arcon 0.2.1

A runtime for writing streaming applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Builder types used in the API
pub mod builder;
/// Dataflow configurations for Operators and Sources
pub mod conf;
/// Sink utilities and extension traits
pub mod sink;
/// Sources that can be converted into Streams
pub mod source;
/// High-level Stream types that users may perform a series of transformations on
pub mod stream;

/// Runtime constructors
pub(crate) mod constructor;
/// Logical Dataflow Graph
pub(crate) mod dfg;