twisted.internet.interfaces.IPushProducer(IProducer)
interface documentationtwisted.internet.interfaces
(View In Hierarchy)
Known subclasses: twisted.internet.endpoints._IProcessTransportWithConsumerAndProducer, twisted.web.iweb.IBodyProducer
Known implementations: twisted.internet._pollingfile._PollableReadPipe, twisted.internet._producer_helpers._PullToPush, twisted.internet._win32stdio.StandardIO, twisted.internet.abstract.FileDescriptor, twisted.internet.iocpreactor.abstract.FileHandle, twisted.internet.testing.StringTransport, twisted.protocols.tls._ProducerMembrane, twisted.test.test_iosim.StrictPushProducer, twisted.web._http2.H2Connection, twisted.web._http2.H2Stream, twisted.web._newclient.TransportProxyProducer, twisted.web.http._NoPushProducer, twisted.web.http.HTTPChannel
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 | pauseProducing | Pause producing data. |
Method | resumeProducing | Resume producing data. |
Inherited from IProducer:
Method | stopProducing | Stop producing data. |