nodedb 0.2.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
// SPDX-License-Identifier: BUSL-1.1

pub mod alert;
pub mod audit_dml;
pub mod bitemporal_extract;
pub mod budget;
pub mod bus;
pub mod cdc;
pub mod collection_gc;
pub mod consumer;
pub mod consumer_helpers;
pub mod crdt_sync;
pub mod cross_shard;
pub mod field_diff;
pub mod kafka;
pub mod metrics;
pub mod plane;
pub mod scheduler;
pub mod slab_budget;
pub mod streaming_mv;
#[cfg(test)]
mod test_utils;
pub mod topic;
pub mod trigger;
pub mod types;
pub mod wal_replay;
pub mod watermark;
pub mod watermark_tracker;
pub mod webhook;

pub use bus::{EventProducer, create_event_bus};
pub use plane::EventPlane;
pub use types::{EventSource, WriteEvent, WriteOp, deserialize_event_payload};