name_locker 0.1.1

This crate provides interface for asynchronous name lockers, that can run an async task with lock on a given name.
Documentation
1
2
3
4
5
6
7
8
9
10
//! I define few implementations of [`NameLocker`](super::NameLocker).
//!

mod void;
pub use void::VoidNameLocker;

#[cfg(feature = "inmem")]
mod inmem;
#[cfg(feature = "inmem")]
pub use inmem::InmemNameLocker;