nodedb 0.3.0

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
15
16
17
// SPDX-License-Identifier: BUSL-1.1

pub mod buffer;
pub mod compaction;
pub mod consume;
pub mod consumer_group;
pub mod event;
pub mod lag_warner;
pub mod registry;
pub mod router;
pub mod stream_def;

pub use consumer_group::{ConsumerGroupDef, GroupRegistry, OffsetStore};
pub use event::CdcEvent;
pub use registry::StreamRegistry;
pub use router::CdcRouter;
pub use stream_def::ChangeStreamDef;