//! Control plane submodules — extracted from `processor.rs` for readability.
//!
//! All functions here are internal to the processor and not part of the public API.
pub use run_control_lane;
/// Dispatch an async callback respecting its [`CallbackMode`].
///
/// - [`Blocking`](super::callbacks::CallbackMode::Blocking): awaits the callback inline.
/// - [`Concurrent`](super::callbacks::CallbackMode::Concurrent): spawns as a detached tokio task.
pub use dispatch_callback;