Uses of Interface
io.helidon.faulttolerance.Fallback
Packages that use Fallback
Package
Description
Fault tolerance for Helidon SE reactive implementation.
-
Uses of Fallback in io.helidon.faulttolerance
Methods in io.helidon.faulttolerance that return FallbackModifier and TypeMethodDescriptionFallback.Builder.build()static <T> Fallback<T>Fallback.create(Function<Throwable, ? extends CompletionStage<T>> fallback) Create a fallback for aSingleorCompletionStage.static <T> Fallback<T>Fallback.createMulti(Function<Throwable, ? extends Flow.Publisher<T>> fallback) Create a fallback for aMultiorFlow.Publisher.Methods in io.helidon.faulttolerance with parameters of type FallbackModifier and TypeMethodDescription<U> FaultTolerance.TypedBuilder<U>FaultTolerance.Builder.addFallback(Fallback<U> fallback) Add a fallback to the list of handlers.FaultTolerance.TypedBuilder.addFallback(Fallback<T> fallback) Add a fallback to the list of handlers.