サーチ…


前書き

futures-rsは、Rustのゼロコストの先物とストリームを実装するライブラリです。

先物箱のコアコンセプトは、 未来流れです。

oneshot関数を使った未来の作成

将来のクレートには、いくつかの一般的なFuture特性が実装されています。それらのうちの1つはfutures::sync::oneshotモジュールで実装され、 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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow