distribuidos_sync 1.2.0

Sync common utils using standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod constants;
mod single_worker;
mod thread_pool;
mod types;
mod worker_pool;

pub use self::single_worker::blocking::SingleWorker;
pub use self::single_worker::timeout::SingleWorkerTimeout;
pub use self::thread_pool::{
    bounded::ThreadPool, infinite::ThreadPool as UnboundedThreadPool, ExecuteError,
};
pub use self::worker_pool::{
    bounded::WorkerPool, infinite::WorkerPool as UnboundedWorkerPool,
    MessageSyncSender as MessageSender, QueueError,
};