job_abstrs 0.1.0

Abstractions for event-driven jobs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod cache;
mod channel;
mod job;
mod processor;
mod send_receive;

pub use cache::GetCache;
pub use channel::{McReceiver, MpSender};
pub use job::Run;
pub use processor::Processor;
pub use send_receive::{SendReceive, SendReceiveError};