Lines Matching refs:Queue
13 exchanged safely between multiple threads. The :class:`Queue` class in this
35 .. class:: Queue(maxsize=0)
84 Exception raised when non-blocking :meth:`~Queue.get` (or
85 :meth:`~Queue.get_nowait`) is called
86 on a :class:`Queue` object which is empty.
91 Exception raised when non-blocking :meth:`~Queue.put` (or
92 :meth:`~Queue.put_nowait`) is called
93 on a :class:`Queue` object which is full.
98 Queue Objects
101 Queue objects (:class:`Queue`, :class:`LifoQueue`, or :class:`PriorityQueue`)
105 .. method:: Queue.qsize()
112 .. method:: Queue.empty()
120 .. method:: Queue.full()
128 .. method:: Queue.put(item, block=True, timeout=None)
139 .. method:: Queue.put_nowait(item)
144 .. method:: Queue.get(block=True, timeout=None)
159 .. method:: Queue.get_nowait()
167 .. method:: Queue.task_done()
181 .. method:: Queue.join()
195 q = queue.Queue()
240 for compatibility with :meth:`Queue.put`.
253 :meth:`Queue.put_nowait`.
273 Class :class:`multiprocessing.Queue`