Module org.tquadrat.foundation.base
Class AutoLockImpl
java.lang.Object
org.tquadrat.foundation.lang.internal.AutoLockImpl
- All Implemented Interfaces:
AutoCloseable
,AutoLock
@ClassVersion(sourceVersion="$Id: AutoLockImpl.java 1135 2024-05-28 21:32:48Z tquadrat $")
@API(status=INTERNAL,
since="0.1.0")
public final class AutoLockImpl
extends Object
implements AutoLock
The implementation of
AutoLock
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: AutoLockImpl.java 1135 2024-05-28 21:32:48Z tquadrat $
- Since:
- 0.1.0
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.lang.internal.AutoLockImpl"
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.tquadrat.foundation.lang.AutoLock
AutoLock.ExecutionFailedException
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newAutoLockImpl
instance with an internal lock object.AutoLockImpl
(Lock lock) Creates a newAutoLockImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal void
close()
final boolean
evaluate
(Constraint constraint) Evaluates the givenConstraint
after obtaining the lock, and returns its result.void
Executes the given action after obtaining the lock.<R> Optional
<R> Executes the given operation after obtaining the lock, and returns its result.final Lock
Returns the wrapped lock.final AutoLock
lock()
final AutoLock
CallslockInterruptibly()
on the wrappedLock
instance.final Condition
-
Field Details
-
m_Lock
The wrapped lock.
-
-
Constructor Details
-
AutoLockImpl
Creates a newAutoLockImpl
instance.- Parameters:
lock
- The wrapped lock.
-
AutoLockImpl
public AutoLockImpl()Creates a newAutoLockImpl
instance with an internal lock object.
-
-
Method Details
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceAutoLock
-
evaluate
Evaluates the givenConstraint
after obtaining the lock, and returns its result.- Specified by:
evaluate
in interfaceAutoLock
- Parameters:
constraint
- The constraint- Returns:
- The evaluation result.
- Throws:
AutoLock.ExecutionFailedException
- The evaluation failed for some reason.
-
execute
Executes the given action after obtaining the lock.- Specified by:
execute
in interfaceAutoLock
- Parameters:
action
- The action.- Throws:
AutoLock.ExecutionFailedException
- The action failed for some reason.
-
execute
public <R> Optional<R> execute(Operation<? extends R> verification) throws AutoLock.ExecutionFailedException Executes the given operation after obtaining the lock, and returns its result.- Specified by:
execute
in interfaceAutoLock
- Type Parameters:
R
- The type of the operation's result.- Parameters:
verification
- The operation.- Returns:
- An instance of
Optional
that holds the result of the operation. - Throws:
AutoLock.ExecutionFailedException
- The operation failed for some reason.
-
getWrappedLockInstance
Returns the wrapped lock.- Specified by:
getWrappedLockInstance
in interfaceAutoLock
- Returns:
- The wrapped lock.
-
lock
-
lockInterruptibly
CallslockInterruptibly()
on the wrappedLock
instance.- Specified by:
lockInterruptibly
in interfaceAutoLock
- Returns:
- The reference to this
AutoLock
instance. - Throws:
InterruptedException
- The current thread was interrupted while acquiring the lock (and interruption of lock acquisition is supported).
-
newCondition
Returns a newCondition
instance that is bound to the instance ofLock
that is wrapped by thisAutoLock
instance.- Specified by:
newCondition
in interfaceAutoLock
- Returns:
- The new condition.
- See Also:
-