eggress-runtime 1.0.4

Service supervisor and composition layer for eggress
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod platform;
#[cfg(feature = "reverse")]
pub mod reverse;
pub mod snapshot;
pub mod supervisor;

pub use error::RuntimeError;
pub use snapshot::CompiledRuntimeSnapshot;
pub use supervisor::{
    classify_reload_config, CompatibilityOptions, RuntimeState, ServiceSupervisor,
};