Uses of Interface
io.smallrye.faulttolerance.core.util.ExceptionDecision
-
-
Uses of ExceptionDecision in io.smallrye.faulttolerance.core.circuit.breaker
Constructors in io.smallrye.faulttolerance.core.circuit.breaker with parameters of type ExceptionDecision Constructor Description CircuitBreaker(FaultToleranceStrategy<V> delegate, String description, ExceptionDecision exceptionDecision, long delayInMillis, int requestVolumeThreshold, double failureRatio, int successThreshold, Stopwatch stopwatch, Timer timer)CompletionStageCircuitBreaker(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, ExceptionDecision exceptionDecision, long delayInMillis, int requestVolumeThreshold, double failureRatio, int successThreshold, Stopwatch stopwatch, Timer timer) -
Uses of ExceptionDecision in io.smallrye.faulttolerance.core.fallback
Constructors in io.smallrye.faulttolerance.core.fallback with parameters of type ExceptionDecision Constructor Description CompletionStageFallback(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, FallbackFunction<CompletionStage<V>> fallback, ExceptionDecision exceptionDecision)Fallback(FaultToleranceStrategy<V> delegate, String description, FallbackFunction<V> fallback, ExceptionDecision exceptionDecision) -
Uses of ExceptionDecision in io.smallrye.faulttolerance.core.retry
Constructors in io.smallrye.faulttolerance.core.retry with parameters of type ExceptionDecision Constructor Description CompletionStageRetry(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, ExceptionDecision exceptionDecision, long maxRetries, long maxTotalDurationInMillis, Supplier<AsyncDelay> delayBetweenRetries, Stopwatch stopwatch)Retry(FaultToleranceStrategy<V> delegate, String description, ExceptionDecision exceptionDecision, long maxRetries, long maxTotalDurationInMillis, Supplier<SyncDelay> delayBetweenRetries, Stopwatch stopwatch) -
Uses of ExceptionDecision in io.smallrye.faulttolerance.core.util
Classes in io.smallrye.faulttolerance.core.util that implement ExceptionDecision Modifier and Type Class Description classPredicateBasedExceptionDecisionclassSetBasedExceptionDecisionFields in io.smallrye.faulttolerance.core.util declared as ExceptionDecision Modifier and Type Field Description static ExceptionDecisionExceptionDecision. ALWAYS_EXPECTEDstatic ExceptionDecisionExceptionDecision. ALWAYS_FAILURE
-