stormchaser-engine 1.3.0

A robust, distributed workflow engine for event-driven and human-triggered workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Step-level event handling and orchestration logic.

/// Step dispatching mechanisms.
pub mod dispatch;
/// Event handlers for step state transitions.
pub mod events;
/// Intrinsic, built-in step type implementations.
pub mod intrinsic;
/// Quota management for step execution.
pub mod quota;
/// Step scheduling and dependency resolution logic.
pub mod scheduling;

pub use dispatch::*;
pub use events::*;
pub use intrinsic::*;
pub use quota::*;
pub use scheduling::*;