队列 ¶
asyncio 队列的设计类似于类在
queue
模块。尽管 asyncio 队列不是线程安全的,但它们是为用于 async/await 代码专门设计的。
注意,asyncio 队列的方法没有
timeout
参数;使用
asyncio.wait_for()
函数采用超时做队列操作。
另请参阅 范例 以下章节。
队列 ¶
- class asyncio. 队列 ( maxsize = 0 ) ¶
-
FIFO (先进先出) 队列。
若 maxsize is less than or equal to zero, the queue size is infinite. If it is an integer greater than
0,那么await put()blocks when the queue reaches maxsize until an item is removed byget().不像标准库线程化
queue, the size of the queue is always known and can be returned by calling theqsize()方法。3.10 版改变: 移除 loop 参数。
此类是 非线程安全 .
- maxsize ¶
-
队列中允许的项数。
- empty ( ) ¶
-
返回
True若队列为空,False否则。
- 协程 get ( ) ¶
-
Remove and return an item from the queue. If queue is empty, wait until an item is available.
引发
QueueShutDownif the queue has been shut down and is empty, or if the queue has been shut down immediately.
- get_nowait ( ) ¶
-
返回项若立即可用,否则引发
QueueEmpty.
- 协程 join ( ) ¶
-
Block until all items in the queue have been received and processed.
The count of unfinished tasks goes up whenever an item is added to the queue. The count goes down whenever a consumer coroutine calls
task_done()to indicate that the item was retrieved and all work on it is complete. When the count of unfinished tasks drops to zero,join()unblocks.
- 协程 put ( item ) ¶
-
Put an item into the queue. If the queue is full, wait until a free slot is available before adding the item.
引发
QueueShutDownif the queue has been shut down.
- qsize ( ) ¶
-
返回队列中的项数。
- shutdown ( immediate = False ) ¶
-
Shut down the queue, making
get()andput()raiseQueueShutDown.默认情况下,
get()on a shut down queue will only raise once the queue is empty. Set immediate to true to makeget()raise immediately instead.All blocked callers of
put()andget()will be unblocked. If immediate is true, a task will be marked as done for each remaining item in the queue, which may unblock callers ofjoin().3.13 版添加。