bounded_taskpool/lib.rs
1//! Task pool
2//!
3//! Bounded pool of tasks
4//! Basically a queue of futures.
5//!
6
7/// Errors for the task pool
8mod errors;
9pub use errors::TaskPoolError;
10
11/// Task pool, queue of futures, with a drain mecanism
12mod taskpool;
13pub use taskpool::TaskPool;
14
15#[cfg(test)]
16mod taskpool_test;