Skip to main content

Module dispatch

Module dispatch 

Source
Expand description

Inline route dispatch capability — the fast-path seam between a consumer and its route pipeline.

The camel-core runtime publishes an InlineRouteDispatcher on the ConsumerContext when a route’s concurrency model permits the inline fast path. Consumers (or the producers bound to them) may then hand Exchanges straight into the pipeline without a channel round-trip. The capability stays opaque: implementors live in camel-core and component crates never see pipeline internals (hexagonal boundary).

Traits§

InlineRouteDispatcher
Opaque capability for dispatching an Exchange directly into a route pipeline (request-reply), bypassing the consumer submission channel.