oxigdal-streaming 0.1.4

Real-time data processing and streaming pipelines for OxiGDAL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Memory-efficient streaming pipelines.
//!
//! This module provides zero-copy and memory-efficient streaming pipelines
//! for processing large geospatial datasets.

pub mod builder;
pub mod executor;
pub mod stage;
pub mod zerocopy;

pub use builder::{PipelineBuilder, PipelineConfig};
pub use executor::{PipelineExecutor, ExecutionStats};
pub use stage::{PipelineStage, StageResult};
pub use zerocopy::{ZeroCopyBuffer, SharedBuffer};