Uses of Class
io.github.juliengalet.reactorflow.exception.RecoverableFlowException
-
Packages that use RecoverableFlowException Package Description io.github.juliengalet.reactorflow.builder io.github.juliengalet.reactorflow.exception io.github.juliengalet.reactorflow.flow -
-
Uses of RecoverableFlowException in io.github.juliengalet.reactorflow.builder
Methods in io.github.juliengalet.reactorflow.builder with parameters of type RecoverableFlowException Modifier and Type Method Description RecoverableFlowBuilder.Build<T>RecoverableFlowBuilder.RecoverOn. recoverOn(RecoverableFlowException recoverOn)Define the type of exception to recoverRetryableFlowBuilder.RetryTimes<T>RetryableFlowBuilder.RetryOn. retryOn(RecoverableFlowException retryOn)Define the type ofFlowExceptionthat should be retried. -
Uses of RecoverableFlowException in io.github.juliengalet.reactorflow.exception
Methods in io.github.juliengalet.reactorflow.exception that return RecoverableFlowException Modifier and Type Method Description static RecoverableFlowExceptionRecoverableFlowException. valueOf(String name)Returns the enum constant of this type with the specified name.static RecoverableFlowException[]RecoverableFlowException. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.github.juliengalet.reactorflow.exception with parameters of type RecoverableFlowException Modifier and Type Method Description booleanFlowException. isRecoverable(RecoverableFlowException recoverable)Check if the exception is recoverable or retryable, for aRecoverableFlowExceptiontype. -
Uses of RecoverableFlowException in io.github.juliengalet.reactorflow.flow
Methods in io.github.juliengalet.reactorflow.flow with parameters of type RecoverableFlowException Modifier and Type Method Description static <T extends FlowContext>
RecoverableFlow<T>RecoverableFlow. create(String name, Flow<T> flow, Flow<T> recover, RecoverableFlowException recoverOn)Static method used to create aRecoverableFlow.static <T extends FlowContext>
RetryableFlow<T>RetryableFlow. create(String name, Flow<T> flow, Integer retryTimes, Integer delay, RecoverableFlowException retryOn)Static method used to create aRetryableFlow.
-