Lines Matching +full:fast +full:- +full:fifo
1 :mod:`queue` --- A synchronized queue class
9 --------------
11 The :mod:`queue` module implements multi-producer, multi-consumer queues.
17 which the entries are retrieved. In a :abbr:`FIFO (first-in, first-out)`
19 :abbr:`LIFO (last-in, first-out)` queue, the most recently added entry is
29 :abbr:`FIFO (first-in, first-out)` queue type, :class:`SimpleQueue`, whose
37 Constructor for a :abbr:`FIFO (first-in, first-out)` queue. *maxsize* is
45 Constructor for a :abbr:`LIFO (last-in, first-out)` queue. *maxsize* is
76 Constructor for an unbounded :abbr:`FIFO (first-in, first-out)` queue.
84 Exception raised when non-blocking :meth:`~Queue.get` (or
91 Exception raised when non-blocking :meth:`~Queue.put` (or
99 -------------
205 # Turn-on the worker thread.
218 -------------------
238 (except for potential low-level errors such as failure to allocate memory).
242 .. impl-detail::
274 A queue class for use in a multi-processing (rather than multi-threading)
278 queues with fast atomic :meth:`~collections.deque.append` and