class _NoPushProducer: (source)
Implements interfaces: twisted.internet.interfaces.IPushProducer
interfaces.IPushProducer, used to abstract over the possibility that a HTTPChannel transport does not provide IPushProducer.| Method | pauseProducing |
Pause producing data. |
| Method | registerProducer |
Register to receive data from a producer. |
| Method | resumeProducing |
Resume producing data. |
| Method | stopProducing |
IProducer.stopProducing |
| 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.
| Parameters | |
| producer | The producer to register. |
| streaming | Whether this is a streaming producer or not. |
Resume producing data.
This tells a producer to re-add itself to the main loop and produce more data for its consumer.