Colt 1.0.2

Uses of Interface
edu.oswego.cs.dl.util.concurrent.ReadWriteLock

Packages that use ReadWriteLock
edu.oswego.cs.dl.util.concurrent Standardized, efficient utility classes commonly encountered in concurrent programming. 
 

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 incoming readers and writers contend in generally fair manner for entry.
 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.2

Submit a bug or feature. Check the Colt home page for the latest news.