(conn: AsyncConnection)
| 240 | |
| 241 | |
| 242 | async def _poll_cancellation(conn: AsyncConnection) -> None: |
| 243 | while True: |
| 244 | if conn.cancel_context.cancelled: |
| 245 | return |
| 246 | |
| 247 | await asyncio.sleep(_POLL_TIMEOUT) |
| 248 | |
| 249 | |
| 250 | async def async_receive_data_socket( |
no outgoing calls
no test coverage detected