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

asyncio.get_event_loop_policy() Get the current event loop policy.

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

maxsize Number of items allowed in the queue.

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

close() Ask the subprocess to stop by calling the terminate() method if the subprocess hasn’t returned yet, and

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

coroutine acquire() Acquire a lock. This method blocks until the lock is unlocked, then sets

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

class selectors.EpollSelector

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

AbstractEventLoop.time() Return the current time, as a

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

AbstractEventLoop.call_soon_threadsafe(callback, *args) Like call_soon(), but thread safe. See

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

class asyncio.StreamWriter(transport, protocol, reader, loop) Wraps a Transport. This exposes

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
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