Class LockingVisitors.StampedLockVisitor<O>
java.lang.Object
org.apache.commons.lang3.concurrent.locks.LockingVisitors.LockVisitor<O,StampedLock>
 
org.apache.commons.lang3.concurrent.locks.LockingVisitors.StampedLockVisitor<O>
- Type Parameters:
- O- The locked (hidden) objects type.
- Enclosing class:
- LockingVisitors
public static class LockingVisitors.StampedLockVisitor<O>
extends LockingVisitors.LockVisitor<O,StampedLock> 
This class implements a wrapper for a locked (hidden) object, and provides the means to access it. The basic
 idea is that the user code forsakes all references to the locked object, using only the wrapper object, and the
 accessor methods 
LockingVisitors.LockVisitor.acceptReadLocked(FailableConsumer), LockingVisitors.LockVisitor.acceptWriteLocked(FailableConsumer),
 LockingVisitors.LockVisitor.applyReadLocked(FailableFunction), and LockingVisitors.LockVisitor.applyWriteLocked(FailableFunction). By doing so, the
 necessary protections are guaranteed.- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedStampedLockVisitor(O object, StampedLock stampedLock) Creates a new instance with the given locked object.
- 
Method SummaryMethods inherited from class org.apache.commons.lang3.concurrent.locks.LockingVisitors.LockVisitoracceptReadLocked, acceptWriteLocked, applyReadLocked, applyWriteLocked, getLock, getObject, lockAcceptUnlock, lockApplyUnlock
- 
Constructor Details- 
StampedLockVisitorCreates a new instance with the given locked object. This constructor is supposed to be used for subclassing only. In general, it is suggested to useLockingVisitors.stampedLockVisitor(Object)instead.- Parameters:
- object- The locked (hidden) object. The caller is supposed to drop all references to the locked object.
- stampedLock- the lock to use.
 
 
-