class documentation

Undocumented

Static Method await_ Undocumented
Method __init__ Undocumented
Method empty Undocumented
Method full Undocumented
Method get Undocumented
Method get_nowait Undocumented
Method put Undocumented
Method put_nowait Undocumented
Method qsize Undocumented
Instance Variable maxsize Undocumented
Instance Variable use_lifo Undocumented
Property _queue Undocumented
@staticmethod
def await_(coroutine: Awaitable[Any]) -> _T: (source)

Undocumented

def __init__(self, maxsize: int = 0, use_lifo: bool = False): (source)
def empty(self) -> bool: (source)
def full(self): (source)
def get(self, block: bool = True, timeout: Optional[float] = None) -> _T: (source)

Undocumented

def get_nowait(self) -> _T: (source)
def put(self, item: _T, block: bool = True, timeout: Optional[float] = None): (source)

Undocumented

def put_nowait(self, item: _T): (source)
def qsize(self): (source)
@memoized_property
_queue: asyncio.Queue[_T] = (source)

Undocumented