This Rust library is an asynchronous "gate" that can be waited to be raised or lowered, as controlled by a corresponding "lever".
This crate is published to crates.io as async-gate
, so you can do
sh
cargo add async-gate
to add it to your project's dependencies.
You probably don't want to use this if you aren't me; I haven't put much effort into documenting or even testing it.
Create an issue and I'll try to help.
Create an issue or pull request and I'll try to fix.
Licensed under either of:
at your option.
This implementation is heavily borrowed from @EFanZh's contributions in this Rust forum post.
The idea is highly inspired by Python's asyncio.Event
, but a gate can be waited for to become 'clear' too (not just 'set').
This library is implemented with Tokio
's watch
channel.
This README was generated with ❤️ by readme-md-generator