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

asyncio.as_completed(fs, *, loop=None, timeout=None) Return an iterator whose values, when waited for, are Future

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

class selectors.SelectSelector

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.StreamReader.set_transport()
  • References/Python/Python/Inputouput

set_transport(transport) Set the transport.

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.Queue.empty()
  • References/Python/Python/Inputouput

empty() Return True if the queue is empty, False otherwise.

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

epoll.close() Close the control file descriptor of the epoll object.

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

Protocol.data_received(data) Called when some data is received. data is a non-empty bytes object containing the incoming

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

class asyncio.Server Server listening on sockets. Object created by the AbstractEventLoop

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

epoll.fileno() Return the file descriptor number of the control fd.

2025-01-10 15:47:30