camel-core 0.25.0

Core engine for rust-camel
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod error;
pub mod route;
pub mod route_compilation;
pub mod route_runtime;
pub mod runtime_event;

pub use error::DomainError;
pub use route::RouteSpec;
pub(crate) use route_compilation::CompiledPipeline;
pub use route_runtime::{RouteLifecycleCommand, RouteRuntimeAggregate, RouteRuntimeState};
pub use runtime_event::RuntimeEvent;