You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
447B

  1. class PullStreamDto:
  2. __slots__ = ('msg', 'context', 'pullQueue', 'fbQueue', 'hbQueue', 'imageQueue', 'analyse_type')
  3. def __init__(self, msg, context, pullQueue, fbQueue, hbQueue, imageQueue, analyse_type):
  4. self.msg = msg
  5. self.context = context
  6. self.pullQueue = pullQueue
  7. self.fbQueue = fbQueue
  8. self.hbQueue = hbQueue
  9. self.imageQueue = imageQueue
  10. self.analyse_type = analyse_type