thread-manager 1.0.0

A streamlined Rust library for efficient thread pooling and parallel job execution, designed for simplicity, flexibility, and performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod assert;
mod channel;
mod dispatch;
mod iterator;
mod looper;
mod manager;
mod order;
mod status;
mod worker;

pub use manager::ThreadManager;
pub use manager::ThreadManagerCore;

pub use looper::ThreadLooper;

pub use iterator::ResultIter;
pub use iterator::YieldResultIter;