Class LockingVisitors
- java.lang.Object
-
- org.apache.commons.lang3.concurrent.locks.LockingVisitors
-
public class LockingVisitors extends java.lang.Object
Combines the monitor and visitor pattern to work with
locked objects
. Locked objects are an alternative to synchronization. This, on Wikipedia, is known as the Visitor pattern (https://en.wikipedia.org/wiki/Visitor_pattern), and from the "Gang of Four" "Design Patterns" book's Visitor pattern [Gamma, E., Helm, R., & Johnson, R. (1998). Visitor. In Design patterns elements of reusable object oriented software (pp. 331-344). Reading: Addison Wesley.].Locking is preferable, if there is a distinction between read access (multiple threads may have read access concurrently), and write access (only one thread may have write access at any given time). In comparison, synchronization doesn't support read access, because synchronized access is exclusive.
Using this class is fairly straightforward:
- While still in single thread mode, create an instance of
LockingVisitors.StampedLockVisitor
by callingstampedLockVisitor(Object)
, passing the object which needs to be locked. Discard all references to the locked object. Instead, use references to the lock. - If you want to access the locked object, create a
FailableConsumer
. The consumer will receive the locked object as a parameter. For convenience, the consumer may be implemented as a Lambda. Then invokeLockingVisitors.LockVisitor.acceptReadLocked(FailableConsumer)
, orLockingVisitors.LockVisitor.acceptWriteLocked(FailableConsumer)
, passing the consumer. - As an alternative, if you need to produce a result object, you may use a
FailableFunction
. This function may also be implemented as a Lambda. To have the function executed, invokeLockingVisitors.LockVisitor.applyReadLocked(FailableFunction)
, orLockingVisitors.LockVisitor.applyWriteLocked(FailableFunction)
.
Example: A thread safe logger class.
public class SimpleLogger { private final StampedLockVisitor<PrintStream> lock; public SimpleLogger(OutputStream out) { lock = LockingVisitors.stampedLockVisitor(new PrintStream(out)); } public void log(String message) { lock.acceptWriteLocked((ps) -> ps.println(message)); } public void log(byte[] buffer) { lock.acceptWriteLocked((ps) -> { ps.write(buffer); ps.println(); }); }
- Since:
- 3.11
- While still in single thread mode, create an instance of
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LockingVisitors.LockVisitor<O,L>
Wraps a domain object and a lock for access by lambdas.static class
LockingVisitors.ReadWriteLockVisitor<O>
This class implements a wrapper for a locked (hidden) object, and provides the means to access it.static class
LockingVisitors.StampedLockVisitor<O>
This class implements a wrapper for a locked (hidden) object, and provides the means to access it.
-
Constructor Summary
Constructors Constructor Description LockingVisitors()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <O> LockingVisitors.ReadWriteLockVisitor<O>
reentrantReadWriteLockVisitor(O object)
Creates a new instance ofLockingVisitors.ReadWriteLockVisitor
with the given (hidden) object.static <O> LockingVisitors.StampedLockVisitor<O>
stampedLockVisitor(O object)
Creates a new instance ofLockingVisitors.StampedLockVisitor
with the given (hidden) object.
-
-
-
Method Detail
-
reentrantReadWriteLockVisitor
public static <O> LockingVisitors.ReadWriteLockVisitor<O> reentrantReadWriteLockVisitor(O object)
Creates a new instance ofLockingVisitors.ReadWriteLockVisitor
with the given (hidden) object.- Type Parameters:
O
- The locked objects type.- Parameters:
object
- The locked (hidden) object.- Returns:
- The created instance, a
lock
for the given object.
-
stampedLockVisitor
public static <O> LockingVisitors.StampedLockVisitor<O> stampedLockVisitor(O object)
Creates a new instance ofLockingVisitors.StampedLockVisitor
with the given (hidden) object.- Type Parameters:
O
- The locked objects type.- Parameters:
object
- The locked (hidden) object.- Returns:
- The created instance, a
lock
for the given object.
-
-