Uses of Interface
org.multiverse.api.callables.TxnBooleanCallable
-
Packages that use TxnBooleanCallable Package Description org.multiverse.api org.multiverse.stms.gamma -
-
Uses of TxnBooleanCallable in org.multiverse.api
Methods in org.multiverse.api with parameters of type TxnBooleanCallable Modifier and Type Method Description static boolean
StmUtils. atomic(TxnBooleanCallable callable)
Executes the callable transactionally on the GlobalStmInstance using the default TxnExecutor.static boolean
StmUtils. atomic(TxnBooleanCallable either, TxnBooleanCallable orelse)
Executes the either block, or in case of a retry, the orelse block is executed.static boolean
StmUtils. atomicChecked(TxnBooleanCallable callable)
Executes the callable transactionally on the GlobalStmInstance using the default TxnExecutor.static boolean
StmUtils. atomicChecked(TxnBooleanCallable either, TxnBooleanCallable orelse)
Executes the either block, or in case of a retry, the orelse block is executed.boolean
OrElseBlock. execute(TxnBooleanCallable either, TxnBooleanCallable orelse)
Executes the either, or when it is retried, the orelse block.boolean
TxnExecutor. execute(TxnBooleanCallable callable)
Executes the transactional callable.boolean
OrElseBlock. executeChecked(TxnBooleanCallable either, TxnBooleanCallable orelse)
Executes the either, or when it is retried, the orelse block.boolean
TxnExecutor. executeChecked(TxnBooleanCallable callable)
Executes the callable. -
Uses of TxnBooleanCallable in org.multiverse.stms.gamma
Methods in org.multiverse.stms.gamma with parameters of type TxnBooleanCallable Modifier and Type Method Description boolean
FatGammaTxnExecutor. execute(TxnBooleanCallable callable)
private boolean
FatGammaTxnExecutor. execute(GammaTxn tx, TxnThreadLocal.Container transactionContainer, GammaTxnPool pool, TxnBooleanCallable callable)
boolean
GammaOrElseBlock. execute(TxnBooleanCallable either, TxnBooleanCallable orelse)
boolean
LeanGammaTxnExecutor. execute(TxnBooleanCallable callable)
boolean
FatGammaTxnExecutor. executeChecked(TxnBooleanCallable callable)
boolean
GammaOrElseBlock. executeChecked(TxnBooleanCallable either, TxnBooleanCallable orelse)
boolean
LeanGammaTxnExecutor. executeChecked(TxnBooleanCallable callable)
-