MCPcopy
hub / github.com/sanic-org/sanic / receive_more

Method receive_more

sanic/server/protocols/base_protocol.py:77–83  ·  view source on GitHub ↗

Wait until more data is received into the Server protocol's buffer

(self)

Source from the content-addressed store, hash-verified

75 self._time = current_time()
76
77 async def receive_more(self):
78 """
79 Wait until more data is received into the Server protocol's buffer
80 """
81 self.transport.resume_reading()
82 self._data_received.clear()
83 await self._data_received.wait()
84
85 def close(self, timeout: float | None = None):
86 """

Callers

nothing calls this directly

Calls 1

waitMethod · 0.80

Tested by

no test coverage detected