// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB
usereifydb_core::interface::change::Change;usereifydb_type::value::datetime::DateTime;/// An event flowing through the flow pipeline.
/// Either a data change or a periodic tick for time-based maintenance.
pubenumFlowEvent{/// A data change (insert/update/remove)
Data(Change),/// Periodic tick carrying current system time
Tick { timestamp: DateTime },}