aion-rs 0.4.0

Transport-agnostic Aion workflow engine with durability, replay, timers, and supervision.
1
2
3
4
5
6
7
8
9
10
11
12
//! Workflow registry handles and tables.

/// Workflow handle residency, completion, and mailbox state.
pub mod handle;
/// In-memory workflow registry table.
pub mod table;

pub use handle::{
    CompletionNotifier, HandleResidency, Residency, TerminalOutcome, WorkflowHandle,
    WorkflowHandleParts,
};
pub use table::Registry;