Skip to main content

reifydb_engine/flow/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4//! Engine-side compiler that turns a CREATE FLOW statement into the dataflow definition the `sub-flow` runtime
5//! consumes. This module is the bridge between RQL's flow AST and the operator graph the streaming runtime
6//! actually evaluates.
7
8pub mod compiler;