logo
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Processor responsible for receiving events, filtering them, and scheduling actions in response.

#[doc(inline)]
pub use outcome::Outcome;
#[doc(inline)]
pub use worker::worker;
#[doc(inline)]
pub use workingdata::*;

mod outcome;
mod outcome_worker;
mod process_holder;
mod worker;
mod workingdata;