Skip to main content

oxigdal_streaming/io/
mod.rs

1//! Chunked I/O operations for efficient data streaming.
2//!
3//! This module provides chunked reading and writing capabilities
4//! for efficient processing of large datasets.
5
6pub mod buffer;
7pub mod chunked;
8pub mod reader;
9pub mod writer;
10
11pub use buffer::{ChunkDescriptor, ChunkedBuffer};
12pub use chunked::{ChunkStrategy, ChunkedIO};
13pub use reader::ChunkedReader;
14pub use writer::ChunkedWriter;