FiberMutex

A Fiber level Mutex, essentially a binary FiberSemaphore

Constructors

this
this()
Undocumented in source.

Members

Aliases

lock
alias lock = wait
lock_nothrow
alias lock_nothrow = lock
unlock
alias unlock = notify
unlock_nothrow
alias unlock_nothrow = unlock

Inherited Members

From FiberSemaphore

wait
void wait()

Wait for FiberSemaphore count to be greater than 0

notify
void notify()

Increment the FiberSemaphore count

Meta