greentic-runner-host 1.1.5

Host runtime shim for Greentic runner: config, pack loading, activity handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod api;
pub mod builder;
pub mod error;
pub mod glue;
pub mod host;
pub mod policy;
pub mod registry;
pub mod runtime;
pub mod shims;
pub mod state_machine;

pub use api::{FlowSchema, FlowSummary, RunFlowRequest, RunFlowResult, RunnerApi};
pub use builder::{Runner, RunnerBuilder};
pub use error::{GResult, RunnerError};
pub use host::{SessionKey, SessionSnapshot};
pub use policy::{Policy, RetryPolicy};
pub use registry::{Adapter, AdapterCall, AdapterRegistry};
pub use runtime::{IngressEnvelope, StateMachineRuntime};