Skip to main content

laminar_core/cluster/
mod.rs

1//! Cluster coordination: discovery and control plane.
2
3/// Node discovery and membership.
4pub mod discovery;
5
6/// Control plane: leader election, assignment snapshots, barrier
7/// coordination.
8pub mod control;
9
10/// In-process harness for cluster integration tests. Gated because
11/// it pulls in chitchat on loopback UDP.
12#[cfg(feature = "cluster-unstable")]
13pub mod testing;