Uses of Interface
io.smallrye.faulttolerance.core.stopwatch.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, 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 Stopwatch in io.smallrye.faulttolerance.core.rate.limit
Methods in io.smallrye.faulttolerance.core.rate.limit with parameters of type Stopwatch Modifier and Type Method Description static TimeWindowTimeWindow. createFixed(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)static TimeWindowTimeWindow. createRolling(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)static TimeWindowTimeWindow. createSmooth(Stopwatch stopwatch, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis)Constructors in io.smallrye.faulttolerance.core.rate.limit with parameters of type Stopwatch Constructor Description CompletionStageRateLimit(FaultToleranceStrategy<CompletionStage<V>> delegate, String description, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis, RateLimitType type, Stopwatch stopwatch)RateLimit(FaultToleranceStrategy<V> delegate, String description, int maxInvocations, long timeWindowInMillis, long minSpacingInMillis, RateLimitType type, 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, ResultDecision resultDecision, ExceptionDecision exceptionDecision, long maxRetries, long maxTotalDurationInMillis, Supplier<AsyncDelay> delayBetweenRetries, Stopwatch stopwatch)Retry(FaultToleranceStrategy<V> delegate, String description, ResultDecision resultDecision, ExceptionDecision exceptionDecision, 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
-