Uses of Class
io.smallrye.faulttolerance.core.util.SetOfThrowables
-
-
Uses of SetOfThrowables in io.smallrye.faulttolerance.core.circuit.breaker
Constructors in io.smallrye.faulttolerance.core.circuit.breaker with parameters of type SetOfThrowables Constructor Description CircuitBreaker(FaultToleranceStrategy<V> delegate, String description, SetOfThrowables failOn, SetOfThrowables skipOn, long delayInMillis, int requestVolumeThreshold, double failureRatio, int successThreshold, Stopwatch stopwatch)CompletionStageCircuitBreaker(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, SetOfThrowables failOn, SetOfThrowables skipOn, long delayInMillis, int requestVolumeThreshold, double failureRatio, int successThreshold, Stopwatch stopwatch) -
Uses of SetOfThrowables in io.smallrye.faulttolerance.core.fallback
Constructors in io.smallrye.faulttolerance.core.fallback with parameters of type SetOfThrowables Constructor Description CompletionStageFallback(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, FallbackFunction<CompletionStage<V>> fallback, SetOfThrowables applyOn, SetOfThrowables skipOn)Fallback(FaultToleranceStrategy<V> delegate, String description, FallbackFunction<V> fallback, SetOfThrowables applyOn, SetOfThrowables skipOn) -
Uses of SetOfThrowables in io.smallrye.faulttolerance.core.retry
Constructors in io.smallrye.faulttolerance.core.retry with parameters of type SetOfThrowables Constructor Description CompletionStageRetry(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, SetOfThrowables retryOn, SetOfThrowables abortOn, long maxRetries, long maxTotalDurationInMillis, Supplier<AsyncDelay> delayBetweenRetries, Stopwatch stopwatch)Retry(FaultToleranceStrategy<V> delegate, String description, SetOfThrowables retryOn, SetOfThrowables abortOn, long maxRetries, long maxTotalDurationInMillis, Supplier<SyncDelay> delayBetweenRetries, Stopwatch stopwatch) -
Uses of SetOfThrowables in io.smallrye.faulttolerance.core.util
Fields in io.smallrye.faulttolerance.core.util declared as SetOfThrowables Modifier and Type Field Description static SetOfThrowablesSetOfThrowables. ALLstatic SetOfThrowablesSetOfThrowables. EMPTYMethods in io.smallrye.faulttolerance.core.util that return SetOfThrowables Modifier and Type Method Description static SetOfThrowablesSetOfThrowables. create(List<Class<? extends Throwable>> classes)
-