diff options
Diffstat (limited to 'kafka/queue.py')
-rw-r--r-- | kafka/queue.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kafka/queue.py b/kafka/queue.py index d4f5b6c..6fe9eaa 100644 --- a/kafka/queue.py +++ b/kafka/queue.py @@ -8,6 +8,8 @@ from .client import KafkaClient, FetchRequest, ProduceRequest log = logging.getLogger("kafka") +raise NotImplementedError("Still need to refactor this class") + class KafkaConsumerProcess(Process): def __init__(self, client, topic, partition, out_queue, barrier, consumer_fetch_size=1024, consumer_sleep=200): self.client = copy(client) |