4 个版本
使用旧的 Rust 2015
0.0.4 | 2015年1月13日 |
---|---|
0.0.3 | 2014年12月16日 |
0.0.2 | 2014年11月22日 |
0.0.1 | 2014年11月22日 |
#928 在 异步
14KB
325 行
rust-promise 
文档
示例
基础
extern crate promise;
use promise::Future;
fn main() {
let f = Future::from_fn(proc() "hello world!");
f.on_success(proc(value){
println!("{}", value)
});
println!("end of main");
}
组合 futures
extern crate promise;
use promise::Future;
use std::time::duration::Duration;
fn main() {
let hello = Future::delay(proc() "hello", Duration::seconds(3));
let world = Future::from_fn(proc() "world");
let hw = Future::all(vec![hello, world]);
hw.map(proc(f) format!("{} {}!", f[0], f[1]))
.on_success(proc(value){
println!("{}", value)
});
println!("end of main");
}
extern crate promise;
use promise::Future;
use std::time::duration::Duration;
fn main() {
let timeout = Future::delay(proc() Err("timeout"), Duration::seconds(2));
let f = Future::delay(proc() Ok("hello world!"), Duration::seconds(3));
let hw = Future::first_of(vec![f, timeout]);
hw.on_success(proc(value){
println!("{}", value)
});
println!("end of main");
}