asyncio.ReadTransport

class asyncio.ReadTransport

Interface for read-only transports.

pause_reading()

Pause the receiving end of the transport. No data will be passed to the protocol’s data_received() method until resume_reading() is called.

resume_reading()

Resume the receiving end. The protocol’s data_received() method will be called once again if some data is available for reading.

doc_python
2016-10-07 17:26:56
Comments
Leave a Comment

Please login to continue.