datasynth-core 2.2.0

Core domain models, traits, and distributions for synthetic enterprise data generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Streaming infrastructure for real-time data generation.
//!
//! This module provides utilities for streaming generation including:
//! - Channel management for producer-consumer patterns
//! - Backpressure handling strategies
//! - Stream coordination and control

mod backpressure;
mod channel;

pub use backpressure::*;
pub use channel::*;