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