本文简要介绍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 Condvar.wait_timeout_ms用法及代码示例
- 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_while。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。