Wait until more data is received into the Server protocol's buffer
(self)
| 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 | """ |