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


Rust Condvar.wait_timeout_ms用法及代碼示例


本文簡要介紹rust語言中 std::sync::Condvar.wait_timeout_ms 的用法。

用法

pub fn wait_timeout_ms<'a, T>(    &self,     guard: MutexGuard<'a, T>,     ms: u32) -> LockResult<(MutexGuard<'a, T>, bool)>

在此條件變量上等待通知,在指定的持續時間後超時。

這個函數的語義等價於 wait ,隻是線程將被阻塞大約不超過ms毫秒。由於搶占或平台差異等異常情況可能不會導致最大等待時間精確為 ms ,因此不應將此方法用於精確計時。

請注意,已盡最大努力確保使用單調時鍾測量等待的時間,並且不受係統時間更改的影響。

僅當已知超時已過時,返回的布爾值才為 false

wait 一樣,當此函數返回時,將重新獲取指定的鎖,無論是否超時。

例子

use std::sync::{Arc, Mutex, Condvar};
use std::thread;

let pair = Arc::new((Mutex::new(false), Condvar::new()));
let pair2 = Arc::clone(&pair);

thread::spawn(move|| {
    let (lock, cvar) = &*pair2;
    let mut started = lock.lock().unwrap();
    *started = true;
    // We notify the condvar that the value has changed.
    cvar.notify_one();
});

// Wait for the thread to start up.
let (lock, cvar) = &*pair;
let mut started = lock.lock().unwrap();
// As long as the value inside the `Mutex<bool>` is `false`, we wait.
loop {
    let result = cvar.wait_timeout_ms(started, 10).unwrap();
    // 10 milliseconds have passed, or maybe the value changed!
    started = result.0;
    if *started == true {
        // We received the notification and the value has been updated, we can leave.
        break
    }
}

相關用法


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