当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。