reifydb-sub-flow 0.4.10

Flow subsystem for stream processing and data flows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! Deferred (CDC-driven) view processing subsystem.
//!
//! Deferred views are updated asynchronously: writes commit first, then CDC events
//! trigger view updates in background workers.

pub(crate) mod coordinator;
pub(crate) mod lag;
pub(crate) mod pool;
pub(crate) mod state;
pub(crate) mod tracker;
pub(crate) mod worker;