5 个版本
0.0.5 | 2019 年 10 月 8 日 |
---|---|
0.0.4 | 2019 年 10 月 8 日 |
0.0.3 | 2019 年 9 月 27 日 |
0.0.2 | 2019 年 9 月 25 日 |
0.0.1 | 2019 年 9 月 25 日 |
737 在 并发 中
38KB
1.5K SLoC
reactor-rust
reactor-rust 是 Rust 中的 Reactive-Streams 实现。它处于积极开发中。 请勿在生产环境中使用!
安装
在您的 Cargo.toml
中添加 reactor_rs = 0.0.3
。
示例
这里有一些基本的示例代码
单子
extern crate reactor_rs;
use reactor_rs::mono;
use reactor_rs::prelude::*;
use reactor_rs::schedulers;
use std::{thread, time::Duration};
fn main() {
let result = mono::just(42)
.do_on_success(|n| {
println!(
"Answer to the Ultimate Question of Life, The Universe, and Everything: {}",
n
);
})
.subscribe_on(schedulers::new_thread())
.flatmap(|n| {
// flatmap async and sleep 500ms.
mono::success(move || {
thread::sleep(Duration::from_millis(500));
n * 2
})
.subscribe_on(schedulers::new_thread())
})
.map(|n| n * 2)
.block()
.unwrap()
.unwrap();
println!("now it should be {}: actual={}!", 42 * 4, result);
}
依赖项
~3MB
~46K SLoC