interface documentation
class IPushProducer(IProducer): (source)
Known subclasses: twisted.web.iweb.IBodyProducer, twisted.internet.endpoints._IProcessTransportWithConsumerAndProducer
A push producer, also known as a streaming producer is expected to produce (write to this consumer) data on a continuous basis, unless it has been paused. A paused push producer will resume producing after its resumeProducing() method is called. For a push producer which is not pauseable, these functions may be noops.
| Method | pause |
Pause producing data. |
| Method | resume |
Resume producing data. |
Inherited from IProducer:
| Method | stop |
Stop producing data. |