Lines Matching refs:Queue
13 exchanged safely between multiple threads. The :class:`Queue` class in this
37 .. class:: Queue(maxsize=0)
86 Exception raised when non-blocking :meth:`~Queue.get` (or
87 :meth:`~Queue.get_nowait`) is called
88 on a :class:`Queue` object which is empty.
93 Exception raised when non-blocking :meth:`~Queue.put` (or
94 :meth:`~Queue.put_nowait`) is called
95 on a :class:`Queue` object which is full.
100 Queue Objects
103 Queue objects (:class:`Queue`, :class:`LifoQueue`, or :class:`PriorityQueue`)
107 .. method:: Queue.qsize()
114 .. method:: Queue.empty()
122 .. method:: Queue.full()
130 .. method:: Queue.put(item, block=True, timeout=None)
141 .. method:: Queue.put_nowait(item)
146 .. method:: Queue.get(block=True, timeout=None)
156 .. method:: Queue.get_nowait()
164 .. method:: Queue.task_done()
178 .. method:: Queue.join()
198 q = queue.Queue()
241 for compatibility with :meth:`Queue.put`.
254 :meth:`Queue.put_nowait`.
274 Class :class:`multiprocessing.Queue`