Uses of Class
org.apache.jcs.utils.locking.ReadWriteLock

Packages that use ReadWriteLock
org.apache.jcs.auxiliary.disk The primary disk auxiliary. 
org.apache.jcs.auxiliary.disk.indexed   
org.apache.jcs.utils.locking   
 

Uses of ReadWriteLock in org.apache.jcs.auxiliary.disk
 

Fields in org.apache.jcs.auxiliary.disk declared as ReadWriteLock
protected  ReadWriteLock AbstractDiskCache.lock
          Each instance of a Disk cache should use this lock to synchronize reads and writes to the underlying storage mechansism.
 

Uses of ReadWriteLock in org.apache.jcs.auxiliary.disk.indexed
 

Fields in org.apache.jcs.auxiliary.disk.indexed declared as ReadWriteLock
protected  ReadWriteLock IndexedDiskCache.storageLock
          Each instance of a Disk cache should use this lock to synchronize reads and writes to the underlying storage mechansism.
 

Uses of ReadWriteLock in org.apache.jcs.utils.locking
 

Fields in org.apache.jcs.utils.locking declared as ReadWriteLock
private  ReadWriteLock RwLockHolder.rwlock
          Contained ReadWriteLock
 

Constructors in org.apache.jcs.utils.locking with parameters of type ReadWriteLock
RwLockHolder(ReadWriteLock rwlock)
          Constructs with a Read/Write lock for a specific resource.