Interface OrElseBlock
- All Superinterfaces:
MultiverseConstants
- All Known Implementing Classes:
GammaOrElseBlock
The OrElse is responsible for executing the either block, or in case of a retry, the orelse block is executed.
Another useful features of this design is that for certain primitives it doesn't require any form of boxing.
It also provides an atomicChecked for a TxnVoidCallable which doesn't force a developer to return something when
nothing needs to be returned.
-
Field Summary
Fields inherited from interface MultiverseConstants
LOCKMODE_EXCLUSIVE, LOCKMODE_NONE, LOCKMODE_READ, LOCKMODE_WRITE, SHAKE_BUGS, SPIN_YIELD, TRACING_ENABLED -
Method Summary
Modifier and TypeMethodDescriptionbooleanexecute(TxnBooleanCallable either, TxnBooleanCallable orelse) Executes the either, or when it is retried, the orelse block.<E> Eexecute(TxnCallable<E> either, TxnCallable<E> orelse) Executes the either, or when it is retried, the orelse block.doubleexecute(TxnDoubleCallable either, TxnDoubleCallable orelse) Executes the either, or when it is retried, the orelse block.intexecute(TxnIntCallable either, TxnIntCallable orelse) Executes the either, or when it is retried, the orelse block.longexecute(TxnLongCallable either, TxnLongCallable orelse) Executes the either, or when it is retried, the orelse block.voidexecute(TxnVoidCallable either, TxnVoidCallable orelse) Executes the either, or when it is retried, the orelse block.booleanexecuteChecked(TxnBooleanCallable either, TxnBooleanCallable orelse) Executes the either, or when it is retried, the orelse block.<E> EexecuteChecked(TxnCallable<E> either, TxnCallable<E> orelse) Executes the either, or when it is retried, the orelse block.doubleexecuteChecked(TxnDoubleCallable either, TxnDoubleCallable orelse) Executes the either, or when it is retried, the orelse block.intexecuteChecked(TxnIntCallable either, TxnIntCallable orelse) Executes the either, or when it is retried, the orelse block.longexecuteChecked(TxnLongCallable either, TxnLongCallable orelse) Executes the either, or when it is retried, the orelse block.voidexecuteChecked(TxnVoidCallable either, TxnVoidCallable orelse) Executes the either, or when it is retried, the orelse block.
-
Method Details
-
execute
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible. If in the execution of the closure a checked exception is thrown, the exception is wrapped in a InvisibleCheckedException. The original exception can be retrieved by calling the getCause method.- Parameters:
either-orelse-- Returns:
- the result of the execution.
- Throws:
NullPointerException- if either or orelse is null.TxnMandatoryException- if no transaction is found on the TxnThreadLocal.InvisibleCheckedException- if a checked exception is thrown by the closure.
-
executeChecked
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible.- Parameters:
either-orelse-- Returns:
- the result of the execution.
- Throws:
NullPointerException- if either or orelse is null.TxnMandatoryException- if no transaction is found on the TxnThreadLocal.Exception- if the atomicChecked call fails.
-
execute
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible. If in the execution of the closure a checked exception is thrown, the exception is wrapped in a InvisibleCheckedException. The original exception can be retrieved by calling the getCause method.- Parameters:
either-orelse-- Returns:
- the result of the execution.
- Throws:
NullPointerException- if either or orelse is null.TxnMandatoryException- if no transaction is found on the TxnThreadLocal.InvisibleCheckedException- if a checked exception is thrown by the closure.
-
executeChecked
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible.- Parameters:
either-orelse-- Returns:
- the result of the execution.
-
execute
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible. If in the execution of the closure a checked exception is thrown, the exception is wrapped in a InvisibleCheckedException. The original exception can be retrieved by calling the getCause method.- Parameters:
either-orelse-- Returns:
- the result of the execution.
-
executeChecked
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible.- Parameters:
either-orelse-- Returns:
- the result of the execution.
-
execute
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible. If in the execution of the closure a checked exception is thrown, the exception is wrapped in a InvisibleCheckedException. The original exception can be retrieved by calling the getCause method.- Parameters:
either-orelse-- Returns:
- the result of the execution.
-
executeChecked
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible.- Parameters:
either-orelse-- Returns:
- the result of the execution.
-
execute
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible. If in the execution of the closure a checked exception is thrown, the exception is wrapped in a InvisibleCheckedException. The original exception can be retrieved by calling the getCause method.- Parameters:
either-orelse-- Returns:
- the result of the execution.
-
executeChecked
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible.- Parameters:
either-orelse-- Returns:
- the result of the execution.
-
execute
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible. If in the execution of the closure a checked exception is thrown, the exception is wrapped in a InvisibleCheckedException. The original exception can be retrieved by calling the getCause method.- Parameters:
either-orelse-
-
executeChecked
Executes the either, or when it is retried, the orelse block. This operation makes composable blocking operations possible.- Parameters:
either-orelse-
-