MPMC Queue
A bounded multi-producer multi-consumer queue implemented in Rust using Mutex + Condvar.
Features
- Blocking push/pop
- Non-blocking try_push/try_pop
- Thread-safe
Example
use ;
let q = new;
q.push;
println!;
Usage
# Run example
# Run tests
# Run benchmark