rx-rust 0.3.0

Reactive Programming in Rust inspired by ReactiveX https://reactivex.io/
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(dead_code)]
pub(crate) mod checker;
pub(crate) mod join_handle;
pub(crate) mod stress_test;
pub(crate) mod test_channel;
pub(crate) mod test_runtime;
pub(crate) mod test_scheduler;
pub(crate) mod test_struct;
pub(crate) mod types;

use std::time::Duration;
pub(crate) const DURATION_3_MS: Duration = Duration::from_millis(3);
pub(crate) const DURATION_10_MS: Duration = Duration::from_millis(10);
pub(crate) const DURATION_30_MS: Duration = Duration::from_millis(30);
pub(crate) const DURATION_100_MS: Duration = Duration::from_millis(100);