reifydb-cdc 0.4.5

Change Data Capture module for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! CDC consumption module
//!
//! This module provides the consumer-side functionality for CDC:
//! - Consumer traits for processing CDC events
//! - Checkpoint management for tracking consumer progress
//! - Poll-based consumer implementation (actor-based)
//! - Watermark computation for retention coordination

pub mod actor;
pub mod checkpoint;
pub mod consumer;
pub mod host;
pub mod poll;
pub mod watermark;