datasynth_core/streaming/mod.rs
1//! Streaming infrastructure for real-time data generation.
2//!
3//! This module provides utilities for streaming generation including:
4//! - Channel management for producer-consumer patterns
5//! - Backpressure handling strategies
6//! - Stream coordination and control
7
8mod backpressure;
9mod channel;
10
11pub use backpressure::*;
12pub use channel::*;