Uses of Interface
io.debezium.util.DelayStrategy
Packages that use DelayStrategy
-
Uses of DelayStrategy in io.debezium.util
Methods in io.debezium.util that return DelayStrategyModifier and TypeMethodDescriptionstatic DelayStrategyDelayStrategy.boundedExponential(Duration initialDelay, Duration maxDelay, double backOffMultiplier) static DelayStrategyCreate a delay strategy that applies a constant delay as long as the criteria is met.static DelayStrategyDelayStrategy.exponential(Duration initialDelay, Duration maxDelay) Create a delay strategy that applies an exponentially-increasing delay as long as the criteria is met.static DelayStrategyDelayStrategy.exponential(Duration initialDelay, Duration maxDelay, double backOffMultiplier) static DelayStrategyDelayStrategy.exponential(Duration initialDelay, Duration maxDelay, double backOffMultiplier, boolean bounded) Create a delay strategy that applies an exponentially-increasing delay as long as the criteria is met.static DelayStrategyCreate a delay strategy that applies an linearly-increasing delay as long as the criteria is met.static DelayStrategyDelayStrategy.none()Create a delay strategy that never delays.