timely 0.2.0

A low-latency data-parallel dataflow system in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Progress tracking mechanisms to support notification in timely dataflow

pub use self::operate::Operate;
pub use self::nested::{Subgraph, Source, Target};
pub use self::timestamp::{Timestamp, PathSummary};
pub use self::count_map::CountMap;
pub use self::frontier::Antichain;

pub mod count_map;
pub mod frontier;
pub mod nested;
pub mod timestamp;
pub mod operate;
pub mod broadcast;