nodedb 0.3.0-beta.1

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: BUSL-1.1

//! Distributed apply machinery — tracks pending Raft proposals and applies
//! committed entries to the local Data Plane.
//!
//! See [`crate::control::wal_replication`] for the full write flow description.

pub mod applier;
pub mod apply_loop;
pub mod propose_tracker;

pub use applier::{ApplyBatch, DistributedApplier, create_distributed_applier};
pub use apply_loop::run_apply_loop;
pub use propose_tracker::{ProposeResult, ProposeTracker};