fang 0.10.4

Background job processing library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod error;
pub mod queue;
pub mod runnable;
pub mod schema;
pub mod worker;
pub mod worker_pool;

pub use queue::*;
pub use runnable::Runnable;
pub use schema::*;
pub use worker::*;
pub use worker_pool::*;