RWMutex

A mutex which allows multiple multiple readers to pass while blocking on write.

This RWMutex implementation is read-preferring.

Constructors

this
this()

Creates a new read-write mutex.

Destructor

~this
~this()

Destructor

Members

Classes

Reader
class Reader
Undocumented in source.
Writer
class Writer
Undocumented in source.

Variables

reader
Reader reader;

The reader lock.

writer
Writer writer;

The writer lock.

Meta