aion-rs 0.1.0

Transport-agnostic Aion workflow engine with durability, replay, timers, and supervision.
1
2
3
4
5
6
7
8
9
//! Activity dispatch bridges and helpers.

/// Shared dispatcher installation and invocation bridge.
pub mod bridge;
/// Activity outcome dispatch and error propagation helpers.
pub mod dispatch;

pub use bridge::ActivityDispatcher;
pub use dispatch::{dispatch_activity, propagate_activity_outcome, surface_activity_error};