vuo 0.1.1

An asynchronous stream processing library for Rust, built on Actix, providing a rich set of functional operators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Vuo streaming library

pub mod channel;
pub mod pipe;
pub mod queue;
pub mod signal;
pub mod stream;
pub mod topic;

pub use channel::Channel;
pub use pipe::Pipe;
pub use queue::VuoQueue as Queue;
pub use signal::Signal;
pub use stream::Stream;
pub use topic::Topic;