Uses of Class
io.helidon.faulttolerance.Fallback.Builder
-
Packages that use Fallback.Builder Package Description io.helidon.faulttolerance Fault tolerance for Helidon SE reactive implementation. -
-
Uses of Fallback.Builder in io.helidon.faulttolerance
Methods in io.helidon.faulttolerance that return Fallback.Builder Modifier and Type Method Description Fallback.Builder<T>
Fallback.Builder. addApplyOn(Class<? extends Throwable> clazz)
Apply fallback on this throwable class.Fallback.Builder<T>
Fallback.Builder. addSkipOn(Class<? extends Throwable> clazz)
Do not apply fallback on this throwable class.Fallback.Builder<T>
Fallback.Builder. applyOn(Class<? extends Throwable>... classes)
Apply fallback on these throwable classes.static <T> Fallback.Builder<T>
Fallback. builder()
A builder to customizeFallback
.Fallback.Builder<T>
Fallback.Builder. fallback(Function<Throwable,? extends CompletionStage<T>> fallback)
Configure a fallback for aSingle
orCompletionStage
.Fallback.Builder<T>
Fallback.Builder. fallbackMulti(Function<Throwable,? extends Flow.Publisher<T>> fallback)
Configure a fallback for aMulti
orFlow.Publisher
.Fallback.Builder<T>
Fallback.Builder. skipOn(Class<? extends Throwable>... classes)
Do not apply fallback on these throwable classes.
-