Module mutex_ordered

Source
Expand description

The Ordered Mutex has its mechanism of locking order when you have concurrent access to data. It will work well when you needed step by step data locking like sending UDP packages in a specific order.

Structsยง

OrderedMutex
The Ordered Mutex has its mechanism of locking order when you have concurrent access to data. It will work well when you needed step by step data locking like sending UDP packages in a specific order.
OrderedMutexGuard
The Simple OrderedMutex Guard As long as you have this guard, you have exclusive access to the underlying T. The guard internally borrows the OrderedMutex, so the mutex will not be dropped while a guard exists. The lock is automatically released and waked the next locker whenever the guard is dropped, at which point lock will succeed yet again.
OrderedMutexGuardFuture
OrderedMutexOwnedGuard
An owned handle to a held OrderedMutex. This guard is only available from a OrderedMutex that is wrapped in an Arc. It is identical to OrderedMutexGuard, except that rather than borrowing the OrderedMutex, it clones the Arc, incrementing the reference count. This means that unlike OrderedMutexGuard, it will have the 'static lifetime. As long as you have this guard, you have exclusive access to the underlying T. The guard internally keeps a reference-couned pointer to the original OrderedMutex, so even if the lock goes away, the guard remains valid. The lock is automatically released and waked the next locker whenever the guard is dropped, at which point lock will succeed yet again.
OrderedMutexOwnedGuardFuture