- retry(int) - Method in class me.jaksa.FunctionalTransaction
-
Specify the number of retires for the evaluation of this function.
- retry(int) - Method in class me.jaksa.VoidTransaction
-
Specify the number of retires for this transaction.
- retryOn(Class, RunnableWithException) - Static method in class me.jaksa.Unreliable
-
Tries to execute the supplied runnable up to three times as long as the specified exception is being thrown.
- retryOn(Class, SupplierWithException<T>) - Static method in class me.jaksa.Unreliable
-
Tries to retrieve a value up to three times as long as the specified exception is being thrown.
- retryOn(Class, RunnableWithException, int) - Static method in class me.jaksa.Unreliable
-
Tries to execute the supplied runnable up to the specified number of times as long as the specified exception is being thrown.
- retryOn(Class, SupplierWithException<T>, int) - Static method in class me.jaksa.Unreliable
-
Tries to retrieve a value up to the specified number of times as long as the specified exception is being thrown.
- retryOn(Collection<Class>, RunnableWithException) - Static method in class me.jaksa.Unreliable
-
Tries to execute the runnable up to three times as long as one of the specified exceptions is being thrown.
- retryOn(Collection<Class>, RunnableWithException, int) - Static method in class me.jaksa.Unreliable
-
Tries to execute the runnable up to the specified number of times as long as one of the specified exceptions is being thrown.
- retryOn(Collection<Class>, SupplierWithException<T>) - Static method in class me.jaksa.Unreliable
-
Tries to retrieve a value up to three times as long as one of the specified exceptions is being thrown.
- retryOn(Collection<Class>, SupplierWithException<T>, int) - Static method in class me.jaksa.Unreliable
-
Tries to retrieve a value up to the specified number of times as long as one of the specified exceptions is being thrown.
- rollbackTx() - Static method in class me.jaksa.LongTransactions
-
Rolls back the LongTransaction bound to the current thread.
- run() - Method in interface me.jaksa.RunnableWithException
-
- RunnableWithException - Interface in me.jaksa
-
A functional interface that acts as a variant of
Runnable that throws an exception.