asyncio.AbstractEventLoop.is_running()
  • References/Python/Python/Inputouput

AbstractEventLoop.is_running() Returns running status of event loop.

2025-01-10 15:47:30
select.kevent.filter
  • References/Python/Python/Inputouput

kevent.filter Name of the kernel filter.

2025-01-10 15:47:30
asyncio.AbstractEventLoop.sock_recv()
  • References/Python/Python/Inputouput

coroutine AbstractEventLoop.sock_recv(sock, nbytes) Receive data from the socket. Modeled after blocking

2025-01-10 15:47:30
select.kevent.fflags
  • References/Python/Python/Inputouput

kevent.fflags Filter specific flags. KQ_FILTER_READ and KQ_FILTER_WRITE

2025-01-10 15:47:30
asyncio.AbstractEventLoop.stop()
  • References/Python/Python/Inputouput

AbstractEventLoop.stop() Stop running the event loop. This causes run_forever()

2025-01-10 15:47:30
asyncio.AbstractEventLoop.call_soon()
  • References/Python/Python/Inputouput

AbstractEventLoop.call_soon(callback, *args) Arrange for a callback to be called as soon as possible. The callback is called

2025-01-10 15:47:30
asyncio.WriteTransport.can_write_eof()
  • References/Python/Python/Inputouput

can_write_eof() Return

2025-01-10 15:47:30
asyncio.Event.set()
  • References/Python/Python/Inputouput

set() Set the internal flag to true. All coroutines waiting for it to become true are awakened. Coroutine that call

2025-01-10 15:47:30
asyncio.StreamReader.at_eof()
  • References/Python/Python/Inputouput

at_eof() Return True if the buffer is empty and feed_eof() was called.

2025-01-10 15:47:30
asyncio.Future.result()
  • References/Python/Python/Inputouput

result() Return the result this future represents. If the future has been cancelled, raises

2025-01-10 15:47:30