Skip to content
Snippets Groups Projects
Commit 28b338ed authored by Erik Johnston's avatar Erik Johnston
Browse files

Move definition of paused_producer to __init__

parent a177325b
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,10 @@ class BackgroundFileConsumer(object):
# True if PushProducer, false if PullProducer
self.streaming = False
# For PushProducers, indicates whether we've paused the producer and
# need to call resumeProducing before we get more data.
self.paused_producer = False
# Queue of slices of bytes to be written. When producer calls
# unregister a final None is sent.
self.bytes_queue = Queue.Queue()
......@@ -71,8 +75,6 @@ class BackgroundFileConsumer(object):
if not streaming:
self.producer.resumeProducing()
self.paused_producer = False
def unregisterProducer(self):
"""Part of IProducer interface
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment