clicktype_batch/lib.rs
1//! Batching system for ClickType
2
3pub mod batcher;
4pub mod buffer;
5pub mod config;
6pub mod metrics;
7pub mod error;
8
9// Re-exports
10pub use batcher::{Batcher, BatcherHandle, GenericBatcher};
11pub use config::{BatchConfig, FlushStats};
12pub use metrics::{BatcherMetrics, BatcherMetricsSnapshot};
13pub use error::BatchError;