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 untilresume_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.
Please login to continue.