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

coroutine AbstractEventLoop.sock_accept(sock) Accept a connection. Modeled after blocking

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

class asyncio.AbstractEventLoop Abstract base class of event loops. This class is

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
selectors.PollSelector
  • References/Python/Python/Inputouput

class selectors.PollSelector

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

cancel() Cancel the call. If the callback is already canceled or executed, this method has no effect.

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

class asyncio.ProactorEventLoop Proactor event loop for Windows using “I/O Completion Ports” aka IOCP. Subclass of

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

poll.unregister(fd) Remove a file descriptor being tracked by a polling object. Just like the register() method

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

coroutine put(item) Put an item into the queue. If the queue is full, wait until a free slot is available before adding item

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

coroutine join() Block until all items in the queue have been gotten and processed. The count

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

epoll.unregister(fd) Remove a registered file descriptor from the epoll object.

2025-01-10 15:47:30