Zoeken…


Invoering

futures-rs is een bibliotheek die zero-cost futures en streams implementeert in Rust.

De kernconcepten van het futures- krat zijn Future en Stream .

Een toekomst creëren met oneshot-functie

Er zijn enkele algemene Future karaktertrekimplementaties in het futures- krat. Een ervan is geïmplementeerd in futures::sync::oneshot module en is beschikbaar via futures::oneshot functie:

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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow