An async reader-writer lock.
The locking stragegy is fair: neither readers nor writers will be starved, assuming the task executor is also fair.
```rust use async_rwlock::RwLock;
let lock = RwLock::new(5);
// Multiple read locks can be held at a time. let r1 = lock.read().await; let r2 = lock.read().await; asserteq!(*r1, 5); asserteq!(*r2, 5); drop((r1, r2));
// Only one write lock can be held at a time. let mut w = lock.write().await; w += 1; assert_eq!(w, 6); ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.