phytrace_sdk/reliability/
mod.rs

1//! Reliability layer: buffering, retry logic, and batching.
2
3pub mod batch;
4pub mod buffer;
5pub mod retry;
6
7pub use batch::BatchProcessor;
8pub use buffer::FileBuffer;
9pub use retry::RetryHandler;