orka 0.2.0

An asynchronous, pluggable, and type-safe workflow engine for Rust, designed for orchestrating complex multi-step business processes.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod context;
pub mod context_data;
pub mod control;
pub mod step;

// Re-export key types for easier access from other Orka modules (and potentially lib.rs)
pub use context::Handler; // The Handler<T> type alias
pub use context_data::ContextData;
pub use control::{PipelineControl, PipelineResult};
pub use step::{SkipCondition, StepDef};