本文簡要介紹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 Condvar.wait_timeout_while用法及代碼示例
- Rust Condvar.wait_timeout用法及代碼示例
- Rust Condvar.wait_while用法及代碼示例
- Rust Condvar.wait用法及代碼示例
- Rust Condvar.notify_all用法及代碼示例
- Rust Condvar.new用法及代碼示例
- Rust Condvar.notify_one用法及代碼示例
- Rust Condvar用法及代碼示例
- Rust ControlFlow用法及代碼示例
- Rust ControlFlow.break_value用法及代碼示例
- Rust ControlFlow.is_break用法及代碼示例
- Rust Concat用法及代碼示例
- Rust ControlFlow.is_continue用法及代碼示例
- Rust Command.args用法及代碼示例
- Rust Cow.is_owned用法及代碼示例
- Rust Cow用法及代碼示例
- Rust Command.env用法及代碼示例
- Rust Command.env_remove用法及代碼示例
- Rust Command.get_args用法及代碼示例
- Rust Command.stdout用法及代碼示例
- Rust Command.stdin用法及代碼示例
- Rust Components用法及代碼示例
- Rust Component.as_os_str用法及代碼示例
- Rust Command.current_dir用法及代碼示例
- Rust Command.output用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::sync::Condvar.wait_timeout_ms。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。