Uses of Interface
io.debezium.util.DelayStrategy

Packages that use DelayStrategy
Package
Description
 
  • Uses of DelayStrategy in io.debezium.util

    Methods in io.debezium.util that return DelayStrategy
    Modifier and Type
    Method
    Description
    DelayStrategy.constant(long delayInMilliseconds)
    Create a delay strategy that applies a constant delay as long as the criteria is met.
    DelayStrategy.exponential(long initialDelayInMilliseconds, long maxDelayInMilliseconds)
    Create a delay strategy that applies an exponentially-increasing delay as long as the criteria is met.
    DelayStrategy.exponential(long initialDelayInMilliseconds, long maxDelayInMilliseconds, double backOffMultiplier)
    Create a delay strategy that applies an exponentially-increasing delay as long as the criteria is met.
    DelayStrategy.linear(long delayInMilliseconds)
    Create a delay strategy that applies an linearly-increasing delay as long as the criteria is met.
    DelayStrategy.none()
    Create a delay strategy that never delays.