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

coroutine asyncio.start_unix_server(client_connected_cb, path=None, *, loop=None, limit=None, **kwds) Start a UNIX Domain Socket

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

asyncio.run_coroutine_threadsafe(coro, loop) Submit a coroutine object to a given event loop.

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

poll.poll([timeout]) Polls the set of registered file descriptors, and returns a possibly-empty list containing (fd, event)

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
asyncio.BaseTransport.get_extra_info()
  • References/Python/Python/Inputouput

get_extra_info(name, default=None) Return optional transport information. name is a string representing the piece of

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

class asyncio.DatagramProtocol The base class for implementing datagram protocols (for use with e.g. UDP transports).

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

kqueue.fromfd(fd) Create a kqueue object from a given file descriptor.

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

add_done_callback(fn) Add a callback to be run when the future becomes done. The callback is

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

asyncio.ensure_future(coro_or_future, *, loop=None) Schedule the execution of a coroutine object: wrap it in a

2025-01-10 15:47:30