//! Route — a consumer Endpoint wired to a Processor pipeline.
use crate::;
use Arc;
pub type RouteId = String;
/// A Route binds an input Endpoint to a Processor pipeline. The Consumer is
/// lazily created by `CamelContext::start()` so that a route can be described
/// declaratively before the context is running.