task_consumer.py 221 B

123456789101112
  1. from abc import ABC
  2. class TaskConsumerWrapper(ABC):
  3. def __init__(self, *args, **kwargs):
  4. pass
  5. def initialize_callable(self, consumer_concurrency: int):
  6. pass
  7. def __del__(self):
  8. pass