當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust Receiver用法及代碼示例


本文簡要介紹rust語言中 Struct std::sync::mpsc::Receiver 的用法。

用法

pub struct Receiver<T> { /* fields omitted */ }

Rust 的 channel (或 sync_channel )類型的接收部分。這一半隻能由一個線程擁有。

可以使用 recv 檢索發送到頻道的消息。

例子

use std::sync::mpsc::channel;
use std::thread;
use std::time::Duration;

let (send, recv) = channel();

thread::spawn(move || {
    send.send("Hello world!").unwrap();
    thread::sleep(Duration::from_secs(2)); // block for two seconds
    send.send("Delayed for 2 seconds").unwrap();
});

println!("{}", recv.recv().unwrap()); // Received immediately
println!("Waiting...");
println!("{}", recv.recv().unwrap()); // Received after 2 seconds

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Struct std::sync::mpsc::Receiver。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。