reifydb-sdk 0.5.6

SDK for building ReifyDB operators, procedures, transforms and more
Documentation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! Flow definition surface. SDK consumers describe a streaming computation here as a graph of operators,
//! connectors, and inputs; the resulting structure is what the engine compiles into the dataflow that `sub-flow`
//! runs. The builder hides the catalog plumbing so an extension author does not have to know how flows are
//! persisted.

pub mod builder;