// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB
//! Flow lag tracking interface for virtual table support.
use crate;
/// A row in the system.flow_lags virtual table.
/// Trait for providing flow lag data to virtual tables.
///
/// This trait is defined in the core crate to allow the engine crate
/// to use it without depending on the sub-flow crate.
///
/// Implemented by `FlowLagsProvider` in the sub-flow crate.
/// Used by the `FlowLags` virtual table in the engine crate.