|
Colt 1.0.3 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ReadWriteLock | |
edu.oswego.cs.dl.util.concurrent | Overview of package util.concurrent Release 1.3.1 |
Uses of ReadWriteLock in edu.oswego.cs.dl.util.concurrent |
Classes in edu.oswego.cs.dl.util.concurrent that implement ReadWriteLock | |
class |
FIFOReadWriteLock
This class implements a policy for reader/writer locks in which threads contend in a First-in/First-out manner for access (modulo the limitations of FIFOSemaphore, which is used for queuing). |
class |
ReaderPreferenceReadWriteLock
A ReadWriteLock that prefers waiting readers over waiting writers when there is contention. |
class |
ReentrantWriterPreferenceReadWriteLock
A writer-preference ReadWriteLock that allows both readers and writers to reacquire read or write locks in the style of a ReentrantLock. |
class |
WriterPreferenceReadWriteLock
A ReadWriteLock that prefers waiting writers over waiting readers when there is contention. |
Constructors in edu.oswego.cs.dl.util.concurrent with parameters of type ReadWriteLock | |
SyncMap(Map map,
ReadWriteLock rwl)
Create a new SyncMap protecting the given map, and using the given ReadWriteLock to control reader and writer methods. |
|
SyncCollection(Collection collection,
ReadWriteLock rwl)
Create a new SyncCollection protecting the given collection, and using the given ReadWriteLock to control reader and writer methods. |
|
SyncSet(Set set,
ReadWriteLock rwl)
Create a new SyncSet protecting the given set, and using the given ReadWriteLock to control reader and writer methods. |
|
SyncSortedSet(SortedSet set,
ReadWriteLock rwl)
Create a new SyncSortedSet protecting the given set, and using the given ReadWriteLock to control reader and writer methods. |
|
SyncList(List list,
ReadWriteLock rwl)
Create a new SyncList protecting the given list, and using the given ReadWriteLock to control reader and writer methods. |
|
SyncSortedMap(SortedMap map,
ReadWriteLock rwl)
Create a new SyncSortedMap protecting the given map, and using the given ReadWriteLock to control reader and writer methods. |
|
Colt 1.0.3 | |||||||||
PREV NEXT | FRAMES NO FRAMES |