Uses of Interface
io.smallrye.faulttolerance.core.stopwatch.Stopwatch
Packages that use Stopwatch
Package
Description
-
Uses of Stopwatch in io.smallrye.faulttolerance.core.circuit.breaker
Constructors in io.smallrye.faulttolerance.core.circuit.breaker with parameters of type StopwatchModifierConstructorDescriptionCircuitBreaker(FaultToleranceStrategy<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 StopwatchModifier and TypeMethodDescriptionstatic 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 StopwatchModifierConstructorDescriptionRateLimit(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 StopwatchModifierConstructorDescriptionRetry(FaultToleranceStrategy<V> delegate, String description, ResultDecision resultDecision, ExceptionDecision exceptionDecision, long maxRetries, long maxTotalDurationInMillis, Supplier<SyncDelay> syncDelayBetweenRetries, Supplier<AsyncDelay> asyncDelayBetweenRetries, Stopwatch stopwatch, Consumer<FailureContext> beforeRetry) -
Uses of Stopwatch in io.smallrye.faulttolerance.core.stopwatch
Classes in io.smallrye.faulttolerance.core.stopwatch that implement Stopwatch