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

coroutine wait_for(predicate) Wait until a predicate becomes true. The predicate should be a

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

class asyncio.BaseTransport Base class for transports. close(self)

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

coroutine AbstractEventLoop.sock_sendall(sock, data) Send data to the socket. Modeled after blocking

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

asyncio.iscoroutinefunction(func) Return True if func is determined to be a coroutine function

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

set_exception(exception) Mark the future done and set an exception. If the future is already

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

set_result(result) Mark the future done and set its result. If the future is already done when

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

close() Stop serving: close listening sockets and set the sockets attribute to None.

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

locked() Returns True if semaphore can not be acquired immediately.

2025-01-10 15:47:30