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

#[doc(inline)]
pub use handler::Handler as ActionHandler;
#[doc(inline)]
pub use quit::QuitManner;
#[doc(inline)]
pub use r#return::ActionReturn;
#[doc(inline)]
pub use worker::worker;

mod handler;
mod quit;
mod r#return;
mod worker;