ranked-semaphore 0.1.4

A high-performance ranked semaphore with priority support
Documentation
1
2
3
4
5
6
7
8
9
pub(crate) mod core;
pub(crate) mod futures;
pub(crate) mod methods;
pub(crate) mod permits;

// Re-export main types
pub use core::RankedSemaphore;
// Futures are not re-exported, they're returned by methods
pub use permits::{OwnedRankedSemaphorePermit, RankedSemaphorePermit};