laminar_core/delta/coordination/mod.rs
1//! # Delta Coordination
2//!
3//! Implements the orchestration layer for the delta.
4//! This module manages the lifecycle of a node in the delta:
5//! discovery, partition assignment, and graceful shutdown.
6
7/// Top-level orchestration of the delta lifecycle.
8pub mod orchestrator;
9
10pub use orchestrator::{DeltaManager, NodeLifecyclePhase};