Module org.tquadrat.foundation.base
Class LockExecutorImpl
java.lang.Object
org.tquadrat.foundation.lang.internal.LockExecutorImpl
- All Implemented Interfaces:
LockExecutor
@ClassVersion(sourceVersion="$Id: LockExecutorImpl.java 1097 2024-02-06 20:10:12Z tquadrat $")
@API(status=INTERNAL,
since="0.1.0")
public final class LockExecutorImpl
extends Object
implements LockExecutor
The implementation of
LockExecutor
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: LockExecutorImpl.java 1097 2024-02-06 20:10:12Z tquadrat $
- Since:
- 0.1.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.lang.internal.LockExecutorImpl"
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
LockExecutorImpl
(AutoLock lock) Creates an instance ofLockExecutorImpl
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
evaluate
(Constraint constraint) Evaluates the given condition.void
Executes the given action.<T> Optional
<T> Executes the given operation.static final LockExecutor
Creates a newLockExecutor
from the givenLock
instance.static final LockExecutor
Creates a newLockExecutor
from the givenAutoLock
instance.
-
Field Details
-
m_Lock
The lock.
-
-
Constructor Details
-
LockExecutorImpl
Creates an instance ofLockExecutorImpl
.- Parameters:
lock
- The lock.
-
-
Method Details
-
evaluate
Evaluates the given condition.- Specified by:
evaluate
in interfaceLockExecutor
- Parameters:
constraint
- The constraint.- Returns:
- The result of the evaluation of the condition.
- Throws:
AutoLock.ExecutionFailedException
- The evaluation failed for some reason.
-
execute
Executes the given action.- Specified by:
execute
in interfaceLockExecutor
- Parameters:
action
- The action.- Throws:
AutoLock.ExecutionFailedException
- The action failed for some reason.
-
execute
Executes the given operation.- Specified by:
execute
in interfaceLockExecutor
- Type Parameters:
T
- The type of the operation's result.- Parameters:
operation
- The operation.- Returns:
- An instance of
Optional
that holds the result of the operation. - Throws:
AutoLock.ExecutionFailedException
- The operation failed for some reason.
-
of
Creates a newLockExecutor
from the givenLock
instance.- Parameters:
lock
- The lock.- Returns:
- The new
LockExecutor
.
-
of
Creates a newLockExecutor
from the givenAutoLock
instance.- Parameters:
lock
- The lock.- Returns:
- The new
LockExecutor
.
-