select.kevent.udata
  • References/Python/Python/Inputouput

kevent.udata User defined value.

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

AbstractEventLoop.add_reader(fd, callback, *args) Start watching the file descriptor for read availability and then call the

2025-01-10 15:47:30
select.epoll.poll()
  • References/Python/Python/Inputouput

epoll.poll(timeout=-1, maxevents=-1) Wait for events. timeout in seconds (float)

2025-01-10 15:47:30
asyncio.InvalidStateError
  • References/Python/Python/Inputouput

exception asyncio.InvalidStateError The operation is not allowed in this state.

2025-01-10 15:47:30
asyncio.Condition
  • References/Python/Python/Inputouput

class asyncio.Condition(lock=None, *, loop=None) A Condition implementation, asynchronous equivalent to

2025-01-10 15:47:30
select.epoll()
  • References/Python/Python/Inputouput

select.epoll(sizehint=-1, flags=0) (Only supported on Linux 2.5.44 and newer.) Return an edge polling object, which can be used

2025-01-10 15:47:30
select.kqueue()
  • References/Python/Python/Inputouput

select.kqueue() (Only supported on BSD.) Returns a kernel queue object; see section Kqueue Objects below for the

2025-01-10 15:47:30
select.devpoll.closed
  • References/Python/Python/Inputouput

devpoll.closed True if the polling object is closed.

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

AbstractEventLoop.remove_reader(fd) Stop watching the file descriptor for read availability.

2025-01-10 15:47:30
select.devpoll.fileno()
  • References/Python/Python/Inputouput

devpoll.fileno() Return the file descriptor number of the polling object.

2025-01-10 15:47:30