diff options
author | David Arthur <mumrah@gmail.com> | 2013-04-01 14:56:59 -0400 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2013-04-02 20:19:30 -0400 |
commit | 0678a452ca7ad5fba8e947cbfcf8fcb0f87b902c (patch) | |
tree | d4011fc89717f1eb9884787ae333be5b525bacd4 /kafka/queue.py | |
parent | b6d98c07b418b16061ae92392947d5dd6958a708 (diff) | |
download | kafka-python-0678a452ca7ad5fba8e947cbfcf8fcb0f87b902c.tar.gz |
Refactoring a bit, cleanup for 0.8
Marking some stuff as not compatible for 0.8 (will be added in 0.8.1)
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) |