|
Class Summary |
| AlternatingReadersWritersMonitor |
The Alternating-Readers/Writers Monitor will give the shared structure to a
waiting writer when readers have finished with it and to readers when a
writer has finished with it. |
| Monitor |
This class exists because I am a bad programmer. |
| ReadersPreferredMonitor |
Implementation of MultipleReadersWritersMonitor that gives preference to
readers. |
| SingleReaderWriterMonitor |
This is equivalent to a Semaphore. |
| TakeANumberMonitor |
As each reader or writer arrives, it takes the next number and threads are
served in order by their number. |
| WritersPreferredMonitor |
Implementation of MultipleReadersWritersMonitor that gives preference to
writers. |