nodedb-cluster 0.0.6

Distributed coordination layer for NodeDB — vShards, QUIC transport, and replication
Documentation
//! SWIM failure detector — the runtime that drives the probe loop.
//!
//! This module is the `!I/O` portion of the SWIM subsystem: it owns the
//! probe scheduler, the suspicion timer, and the main `tokio::select!`
//! loop. All actual networking is pushed behind the [`Transport`] trait
//! so unit tests can run fully in-process against [`InMemoryTransport`]
//! while production uses [`UdpTransport`] — both slot into the same
//! detector without touching its logic.

pub mod probe_round;
pub mod runner;
pub mod scheduler;
pub mod suspicion;
pub mod transport;

pub use probe_round::{ProbeOutcome, ProbeRound};
pub use runner::FailureDetector;
pub use scheduler::ProbeScheduler;
pub use suspicion::SuspicionTimer;
pub use transport::{InMemoryTransport, Transport, TransportFabric, UdpTransport};