Description
Provides fast concurrent queues with an API similar to Haskell's Chan, plus related queue variants. Concurrent queues let threads safely pass values between producers and consumers.
It is useful for worker pools, pipelines, event handling, streaming systems, and server internals. Developers still need to design backpressure, shutdown, and exception handling around the queue.