aion-rs 0.2.0

Transport-agnostic Aion workflow engine with durability, replay, timers, and supervision.
1
2
3
4
5
6
7
8
9
//! Workflow signal routing and resume handoff support.

/// Signal resume handoff values and errors.
pub mod resume;
/// Concrete router for delivering signals to workflow mailboxes.
pub mod router;

pub use resume::{SignalResumeError, SignalResumeHandoff};
pub use router::ConcreteSignalRouter;