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.constant(long delayInMilliseconds) Create a delay strategy that applies a constant delay as long as the criteria is met.static DelayStrategyDelayStrategy.exponential(long initialDelayInMilliseconds, long maxDelayInMilliseconds) Create a delay strategy that applies an exponentially-increasing delay as long as the criteria is met.static DelayStrategyDelayStrategy.exponential(long initialDelayInMilliseconds, long maxDelayInMilliseconds, double backOffMultiplier) Create a delay strategy that applies an exponentially-increasing delay as long as the criteria is met.static DelayStrategyDelayStrategy.linear(long delayInMilliseconds) Create 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.