Uses of Interface
io.smallrye.faulttolerance.core.stopwatch.Stopwatch
-
Packages that use Stopwatch Package Description io.smallrye.faulttolerance.core.circuit.breaker io.smallrye.faulttolerance.core.retry io.smallrye.faulttolerance.core.stopwatch -
-
Uses of Stopwatch in io.smallrye.faulttolerance.core.circuit.breaker
Constructors in io.smallrye.faulttolerance.core.circuit.breaker with parameters of type Stopwatch 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 Stopwatch in io.smallrye.faulttolerance.core.retry
Constructors in io.smallrye.faulttolerance.core.retry with parameters of type Stopwatch 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 Stopwatch in io.smallrye.faulttolerance.core.stopwatch
Classes in io.smallrye.faulttolerance.core.stopwatch that implement Stopwatch Modifier and Type Class Description classSystemStopwatch
-