1``tornado.queues`` -- Queues for coroutines
2===========================================
3
4.. versionadded:: 4.2
5
6.. automodule:: tornado.queues
7
8   Classes
9   -------
10
11   Queue
12   ^^^^^
13   .. autoclass:: Queue
14    :members:
15
16   PriorityQueue
17   ^^^^^^^^^^^^^
18   .. autoclass:: PriorityQueue
19    :members:
20
21   LifoQueue
22   ^^^^^^^^^
23   .. autoclass:: LifoQueue
24    :members:
25
26   Exceptions
27   ----------
28
29   QueueEmpty
30   ^^^^^^^^^^
31   .. autoexception:: QueueEmpty
32
33   QueueFull
34   ^^^^^^^^^
35   .. autoexception:: QueueFull
36