pub fn bounded<T>(capacity: usize) -> Queue<T>
Expand description

Alias for Queue::new, creates a new bounded MPMC queue with the given capacity.

Writes will fail if the queue is full.