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
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! CDC Production module.
//!
//! This module provides the infrastructure for generating Change Data Capture events
//! from database commits. It is designed to be independent of the MVCC storage layer,
//! using traits for version resolution.
//!
//! Key components:
//! - `CdcProducerActor`: Actor-based CDC producer with periodic cleanup
//! - `CdcProducerEventListener`: Listens to PostCommitEvent and forwards to producer actor

pub(crate) mod decode;
pub mod producer;