選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PullStreamDto.py 447B

1年前
1234567891011121314
  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