rustpool 0.0.1-beta

A data and thread pool library for Rust
Documentation
//! A data and thread pool library for Rust
#![warn(missing_docs)]
mod atomic_circular_buffer;
mod atomic_queue;
mod blocking_queue;
mod buffer;
mod circular_buffer;
mod object;
mod queue;
mod thread;

pub use atomic_circular_buffer::AtomicCircularBuffer;
pub use atomic_queue::AtomicQueue;
pub use blocking_queue::BlockingQueue;
pub use circular_buffer::CircularBuffer;
pub use object::ObjectPoolBuilder;
pub use queue::RPQueue;

pub use thread::ThreadPool;
pub use thread::ThreadPoolBuilder;