sero

Crates.iosero
lib.rssero
version0.1.17
sourcesrc
created_at2022-12-20 03:42:17.702068
updated_at2022-12-24 02:30:00.379318
descriptionA simple and lightweight library for maintaining a shared store of locks.
homepage
repositoryhttps://github.com/mrvillage/sero
max_upload_size
id741927
size18,804
mrvillage (mrvillage)

documentation

https://docs.rs/sero

README

sero

Sero is a simple and lightweight library for maintaining a shared store of locks.

Usage

use sero::LockStore;

let store = LockStore::new();

// to lock asynchronously use
let guard = store.lock("key").await;
// to lock synchronously use
let guard = store.lock("key").wait();
// NOTE: synchronously locking will "park" the current thread until the lock is acquired

// locks are released when the LockGuard is dropped
// either with the drop function or when they go out of scope
drop(guard);
Commit count: 36

cargo fmt