asyncio.set_event_loop()
  • References/Python/Python/Inputouput

asyncio.set_event_loop(loop) Equivalent to calling get_event_loop_policy().set_event_loop(loop).

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

coroutine AbstractEventLoop.connect_write_pipe(protocol_factory, pipe) Register write pipe in eventloop.

2025-01-10 15:47:30
selectors.SelectorKey.data
  • References/Python/Python/Inputouput

data Optional opaque data associated to this file object: for example, this could be used to store a per-client session ID.

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

select.poll() (Not supported by all operating systems.) Returns a polling object, which supports registering and unregistering

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

is_set() Return True if and only if the internal flag is true.

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

coroutine acquire() Acquire the underlying lock. This method blocks until the lock is unlocked

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

feed_data(data) Feed data bytes in the internal buffer. Any operations waiting for the data will be resumed.

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

select.PIPE_BUF The minimum number of bytes which can be written without blocking to a pipe when the pipe has been reported

2025-01-10 15:47:30
selectors.SelectorKey.events
  • References/Python/Python/Inputouput

events Events that must be waited for on this file object.

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

devpoll.close() Close the file descriptor of the polling object.

2025-01-10 15:47:30