future-parking_lot

Crates.iofuture-parking_lot
lib.rsfuture-parking_lot
version0.3.3
sourcesrc
created_at2019-06-28 14:46:40.767064
updated_at2019-11-07 16:33:26.395583
descriptionAn "as simple as possible" Future implementation for parking_lot
homepage
repositoryhttps://github.com/nappa85/future-parking_lot
max_upload_size
id144323
size40,379
Marco Napetti (nappa85)

documentation

README

future-parking_lot

This is an "as simple as possible" Future implementation for parking_lot. Thanks to async/await feature, now it works directly on Mutex<T> and RwLock<T>.

Example:

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(())
}
Commit count: 30

cargo fmt