pulses 0.2.0

A robust, high-performance background job processing library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Backend-agnostic core abstractions and value types.

pub mod traits;
pub mod types;

pub use traits::Broker;
pub use traits::Handler;
pub use traits::Subscription;
pub use types::Context;
pub use types::Envelope;
pub use types::HandlerError;
pub use types::Outcome;