vortex_ipc/
lib.rs

1//! Vortex IPC messages and associated readers and writers.
2//!
3//! Vortex provides an IPC messaging format to exchange array data over a streaming
4//! interface. The format emits message headers in FlatBuffer format, along with their
5//! data buffers.
6//!
7//! This crate provides both in-memory message representations for holding IPC messages
8//! before/after serialization, and streaming readers and writers that sit on top
9//! of any type implementing `VortexRead` or `VortexWrite` respectively.
10
11pub mod iterator;
12pub mod messages;
13pub mod stream;