Crate crossbeam_queue
source · [−]Expand description
Concurrent queues.
This crate provides concurrent queues that can be shared among threads:
ArrayQueue
, a bounded MPMC queue that allocates a fixed-capacity buffer on construction.SegQueue
, an unbounded MPMC queue that allocates small buffers, segments, on demand.
Structs
A bounded multi-producer multi-consumer queue.
Error which occurs when popping from an empty queue.
Error which occurs when pushing into a full queue.
An unbounded multi-producer multi-consumer queue.