twisted.web.http._NoPushProducer(object)
class documentationtwisted.web.http
View Source
(View In Hierarchy)
Implements interfaces: twisted.internet.interfaces.IPushProducer
A no-op version of interfaces.IPushProducer
,
used to abstract over the possibility that a HTTPChannel
transport does not provide IPushProducer
.
Method | pauseProducing | Pause producing data. |
Method | resumeProducing | Resume producing data. |
Method | registerProducer | Register to receive data from a producer. |
Method | unregisterProducer | Stop consuming data from a producer, without disconnecting. |
Pause producing data.
Tells a producer that it has produced too much data to process for the time being, and to stop until resumeProducing() is called.
Resume producing data.
This tells a producer to re-add itself to the main loop and produce more data for its consumer.
Register to receive data from a producer.
Parameters | producer | The producer to register. |
streaming | Whether this is a streaming producer or not. |