vortex-ipc 0.77.0

IPC message format to exchange Vortex arrays across processes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

mod decoder;
mod encoder;
mod reader_async;
mod reader_buf;
mod reader_sync;
mod writer_async;
mod writer_sync;

pub use decoder::*;
pub use encoder::*;
pub use reader_async::*;
pub use reader_buf::*;
pub use reader_sync::*;
pub use writer_async::*;
pub use writer_sync::*;