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


Rust Condvar.wait_timeout_while用法及代碼示例


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

用法

pub fn wait_timeout_while<'a, T, F>(    &self,     guard: MutexGuard<'a, T>,     dur: Duration,     condition: F) -> LockResult<(MutexGuard<'a, T>, WaitTimeoutResult)> where    F: FnMut(&mut T) -> bool,

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

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

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

返回的 WaitTimeoutResult 值指示是否已知超時已經過去而條件不滿足。

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

例子

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

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

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

// wait for the thread to start up
let (lock, cvar) = &*pair;
let result = cvar.wait_timeout_while(
    lock.lock().unwrap(),
    Duration::from_millis(100),
    |&mut pending| pending,
).unwrap();
if result.1.timed_out() {
    // timed-out without the condition ever evaluating to false.
}
// access the locked mutex via result.0

相關用法


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