Uses of Class
de.aristaflow.adept2.util.locking.ReentrantLock.Lock
- 
Packages that use ReentrantLock.Lock Package Description de.aristaflow.adept2.util.locking 
- 
- 
Uses of ReentrantLock.Lock in de.aristaflow.adept2.util.lockingSubclasses of ReentrantLock.Lock in de.aristaflow.adept2.util.locking Modifier and Type Class Description protected classReentrantLock.ReadLockRepresents a read lock which allows multiple objects to hold the lock simultaneously and multiple times but blocks as soon as one object wants a write lock.protected classReentrantLock.WriteLockRepresents a write lock which allows an object to hold the lock multiple times.Fields in de.aristaflow.adept2.util.locking declared as ReentrantLock.Lock Modifier and Type Field Description protected ReentrantLock.LockReentrantLock. readLockThe lock responsible for synchronising read access.protected ReentrantLock.LockReentrantLock. writeLockThe lock responsible for synchronising write access.Methods in de.aristaflow.adept2.util.locking that return ReentrantLock.Lock Modifier and Type Method Description ReentrantLock.LockReentrantLock. readLock()Returns the read-lock for this read/write-lock or the exclusive lock in case of an exclusive lock.ReentrantLock.LockReentrantLock. writeLock()Returns the write-lock for this read/write-lock or the exclusive lock in case of an exclusive lock.
 
-