taq/
lib.rs

1//! Task management abstraction.
2
3/// Error types and what not.
4pub mod error;
5/// Global task handles.
6pub mod global;
7mod handle;
8mod job;
9mod manager;
10mod task;
11
12pub use handle::{Handle, HandleExt};
13pub use job::Job; // and job macro
14pub use manager::TaskManager;
15pub use task::{run, run_global, Task};