asyncio.SelectorEventLoop
  • References/Python/Python/Inputouput

class asyncio.SelectorEventLoop Event loop based on the

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

class asyncio.StreamReaderProtocol(stream_reader, client_connected_cb=None, loop=None) Trivial helper class to adapt between

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

AbstractEventLoop.close() Close the event loop. The loop must not be running. Pending callbacks will be lost.

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

get_write_buffer_limits() Get the high- and low-water limits for write flow control. Return a tuple (low

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

put_nowait(item) Put an item into the queue without blocking. If no free slot is immediately

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

coroutine read(n=-1) Read up to n bytes. If n is not provided, or set to -1, read until EOF and

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

SubprocessProtocol.pipe_data_received(fd, data) Called when the child process writes data into its stdout or stderr pipe. fd

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

@asyncio.coroutine Decorator to mark generator-based coroutines. This enables the generator use yield from to call

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

class selectors.BaseSelector A BaseSelector is used to wait for I/O event readiness on multiple file objects. It

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

coroutine AbstractEventLoop.create_unix_connection(protocol_factory, path, *, ssl=None, sock=None, server_hostname=None) Create

2025-01-10 15:47:30