MCPcopy Index your code
hub / github.com/python/cpython / pause_reading

Method pause_reading

Lib/asyncio/transports.py:55–61  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

53 raise NotImplementedError
54
55 def pause_reading(self):
56 """Pause the receiving end.
57
58 No data will be passed to the protocol's data_received()
59 method until resume_reading() is called.
60 """
61 raise NotImplementedError
62
63 def resume_reading(self):
64 """Resume the receiving end.

Callers 14

feed_dataMethod · 0.45
__init__Method · 0.45
start_tlsMethod · 0.45
data_receivedMethod · 0.45
connection_madeMethod · 0.45
data_receivedMethod · 0.45
test_pause_readingMethod · 0.45
test_resume_readingMethod · 0.45

Calls

no outgoing calls