node/event_source/mod.rs
1//! Event source state machine.
2//!
3//! Here is the logic for retrieving and processing events. This is the
4//! main driver of state machine.
5//!
6//! From outside the state machine, only dispatched actions should be
7//! either event source actions or special `CheckTimeoutsAction`.
8
9mod event;
10pub use event::*;
11
12mod event_source_actions;
13pub use event_source_actions::*;
14
15mod event_source_effects;
16pub use event_source_effects::*;
17
18mod event_source_service;
19pub use event_source_service::*;