class documentation

class AsyncAdaptedQueue:

Known subclasses: sqlalchemy.util.queue.FallbackAsyncAdaptedQueue

View In Hierarchy

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
Class Variable await​_ Undocumented
Instance Variable maxsize Undocumented
Instance Variable use​_lifo Undocumented
Property ​_queue Undocumented
def __init__(self, maxsize=0, use_lifo=False):

Undocumented

def empty(self):

Undocumented

def full(self):

Undocumented

def get(self, block=True, timeout=None):

Undocumented

def get_nowait(self):

Undocumented

def put(self, item, block=True, timeout=None):

Undocumented

def put_nowait(self, item):

Undocumented

def qsize(self):

Undocumented

await_ =
maxsize =

Undocumented

use_lifo =

Undocumented

@memoized_property
_queue =

Undocumented