reactive-mutiny 1.3.1

async Event-Driven Reactive Library with advanced & optimized containers (channels) and Stream executors
Documentation
1
2
3
4
5
6
7
8
9
//! Defines channels for Unis that will move data around (instead of [super::zero_copy]ing it).\
//! Basic tests show they are the best performants for payload sizes < 1k.\
//! The Rust Compiler is able, to some extent, to optimize some operations to zero-copy: publishing
//! is subject to this optimization, but consumption isn't.

pub mod atomic;
pub mod crossbeam;
pub mod full_sync;