oxigdal-distributed 0.1.4

Distributed processing capabilities for OxiGDAL using Apache Arrow Flight
Documentation
1
2
3
4
5
6
7
8
9
10
//! Arrow Flight RPC server and client implementations.
//!
//! This module provides zero-copy data transfer between distributed nodes using
//! Apache Arrow Flight protocol.

pub mod client;
pub mod server;

pub use client::FlightClient;
pub use server::FlightServer;