clicktype-batch 0.2.0

Async batching system for ClickType with backpressure and metrics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Batching system for ClickType

pub mod batcher;
pub mod buffer;
pub mod config;
pub mod metrics;
pub mod error;

// Re-exports
pub use batcher::{Batcher, BatcherHandle, GenericBatcher};
pub use config::{BatchConfig, FlushStats};
pub use metrics::{BatcherMetrics, BatcherMetricsSnapshot};
pub use error::BatchError;