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

coroutine AbstractEventLoop.sock_connect(sock, address) Connect to a remote socket at address. Modeled after blocking

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

abstractmethod select(timeout=None) Wait until some registered file objects become ready, or the timeout expires.

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

DatagramProtocol.datagram_received(data, addr) Called when a datagram is received. data is a bytes object containing

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

epoll.register(fd[, eventmask]) Register a fd descriptor with the epoll object.

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

class asyncio.Semaphore(value=1, *, loop=None) A Semaphore implementation. A semaphore manages

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

kevent.udata User defined value.

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

exception asyncio.QueueFull Exception raised when the put_nowait() method is called on a Queue object

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

cancel() Request that this task cancel itself. This arranges for a

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

get_pid() Return the subprocess process id as an integer.

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

asyncio.async(coro_or_future, *, loop=None) A deprecated alias to ensure_future().

2025-01-10 15:47:30