Uses of Class
io.smallrye.faulttolerance.core.FailureContext
-
Packages that use FailureContext Package Description io.smallrye.faulttolerance.core.fallback io.smallrye.faulttolerance.core.retry -
-
Uses of FailureContext in io.smallrye.faulttolerance.core.fallback
Methods in io.smallrye.faulttolerance.core.fallback with parameters of type FailureContext Modifier and Type Method Description CompletionStage<T>AsyncFallbackFunction. apply(FailureContext ctx)Constructor parameters in io.smallrye.faulttolerance.core.fallback with type arguments of type FailureContext Constructor Description AsyncFallbackFunction(Function<FailureContext,CompletionStage<T>> delegate, Executor executor)CompletionStageFallback(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, Function<FailureContext,CompletionStage<V>> fallback, ExceptionDecision exceptionDecision)Fallback(FaultToleranceStrategy<V> delegate, String description, Function<FailureContext,V> fallback, ExceptionDecision exceptionDecision) -
Uses of FailureContext in io.smallrye.faulttolerance.core.retry
Constructor parameters in io.smallrye.faulttolerance.core.retry with type arguments of type FailureContext Constructor Description CompletionStageRetry(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, ResultDecision resultDecision, ExceptionDecision exceptionDecision, long maxRetries, long maxTotalDurationInMillis, Supplier<AsyncDelay> delayBetweenRetries, Stopwatch stopwatch, Consumer<FailureContext> beforeRetry)Retry(FaultToleranceStrategy<V> delegate, String description, ResultDecision resultDecision, ExceptionDecision exceptionDecision, long maxRetries, long maxTotalDurationInMillis, Supplier<SyncDelay> delayBetweenRetries, Stopwatch stopwatch, Consumer<FailureContext> beforeRetry)
-