Ask a question to get started
Enter to send•Shift+Enter new line
Async unbounded FIFO queue with a wait() method.
Subclassed from asyncio.Queue, adding a wait() method.
AsyncQueue()
asyncio.Queue
If queue is empty, wait until an item is available.
Copied from Queue.get(), removing the call to .get_nowait(), ie. this doesn't consume the item, just waits for it.