Skip to main content

rskit_worker/pool/
mod.rs

1//! Bounded async worker pool with streaming events and cooperative cancellation.
2
3mod config;
4mod queue;
5mod runtime;
6
7pub use config::{OverflowPolicy, PoolConfig, PoolStats};
8pub use runtime::Pool;