#future #rwlock #mutex #async

gothack-future-parking_lot

为 parking_lot 提供尽可能简单的 Future 实现

1 个不稳定版本

0.3.4 2022年5月9日

#985并发

Apache-2.0/MIT

31KB
729

future-parking_lot

这是为 parking_lot 提供的尽可能简单的 Future 实现。得益于 async/await 功能,现在它可以直接在 Mutex<T>RwLock<T> 上运行。

示例

use std::sync::Arc;

use parking_lot::RwLock;

use future_parking_lot::rwlock::{FutureReadable, FutureWriteable};

use lazy_static::lazy_static;

lazy_static! {
    static ref LOCK: Arc<RwLock<Vec<String>>> = Arc::new(RwLock::new(Vec::new()));
}

#[tokio::main]
async fn main() -> Result<(), ()> {
    {
        let mut v = LOCK.future_write().await;
        v.push(String::from("It works!"));
    }

    let v = LOCK.future_read().await;
    assert!(v.len() == 1 && v[0] == "It works!");

    Ok(())
}

lib.rs:

future-parking_lot

parking_lot 的简单 Future 实现

依赖关系

~0.5–6MB
~14K SLoC