reifydb-core 0.7.0

Core database interfaces and data structures for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 ReifyDB

//! Shared windowed-aggregation engine.
//!
//! Schema-agnostic core for both faces: the sdk drivers (static `Row` output)
//! and the flow Window/Aggregate operators (dynamic `Columns`/`RowShape`
//! output). [`accumulator`] holds the invertible [`accumulator::WindowAccumulator`]
//! trait and the reusable accumulator primitives; [`span`] holds the coordinate
//! machinery ([`span::Slot`], [`span::WindowSpan`]).

pub mod accumulator;
pub mod engine;
pub mod span;
pub mod state;
pub mod store;