Rust
Futures e Async IO
Ricerca…
introduzione
futures-rs è una libreria che implementa futures e flussi a costo zero in Rust.
I concetti chiave della cassa dei futures sono Future and Stream .
Creare un futuro con la funzione oneshot
Ci sono alcune implementazioni generali del tratto Future
nella cassa dei futures . Uno di questi è implementato nel modulo futures::sync::oneshot
ed è disponibile tramite futures::oneshot
funzione futures::oneshot
:
extern crate futures;
use std::thread;
use futures::Future;
fn expensive_computation() -> u32 {
// ...
200
}
fn main() {
// The oneshot function returns a tuple of a Sender and a Receiver.
let (tx, rx) = futures::oneshot();
thread::spawn(move || {
// The complete method resolves a values.
tx.complete(expensive_computation());
});
// The map method applies a function to a value, when it is resolved.
let rx = rx.map(|x| {
println!("{}", x);
});
// The wait method blocks current thread until the value is resolved.
rx.wait().unwrap();
}
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow