camel-core 0.6.3

Core engine for rust-camel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod body_coercing;
pub(crate) mod consumer_management;
pub(crate) mod controller_actor;
pub mod exchange_uow;
pub mod in_memory;
pub mod redb_journal;
pub(crate) mod route_compiler;
pub mod route_controller;
pub mod route_types;
pub mod runtime_execution;
pub(crate) mod step_resolution;
// supervising_route_controller lives in lifecycle/application/ after Task 7

pub use in_memory::{
    InMemoryCommandDedup, InMemoryEventPublisher, InMemoryProjectionStore, InMemoryRouteRepository,
    InMemoryRuntimeStore,
};
pub use runtime_execution::RuntimeExecutionAdapter;