forge-runtime 0.10.0

Runtime executors and gateway for the Forge framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod bridge;
mod event_store;
mod executor;
mod registry;
mod scheduler;
mod state;

pub use bridge::register_workflow_bridge;
pub use event_store::EventStore;
pub use executor::WorkflowExecutor;
pub use registry::{
    DrainEntry, ResumeBlockReason, WorkflowEntry, WorkflowRegistry, WorkflowVersionKey,
};
pub use scheduler::{WorkflowScheduler, WorkflowSchedulerConfig};
pub use state::{WorkflowRecord, WorkflowStepRecord};