Class ExponentialBackOffWithMaxRetries

java.lang.Object
org.springframework.util.backoff.ExponentialBackOff
org.springframework.kafka.support.ExponentialBackOffWithMaxRetries
All Implemented Interfaces:
org.springframework.util.backoff.BackOff

public class ExponentialBackOffWithMaxRetries extends org.springframework.util.backoff.ExponentialBackOff
Subclass of ExponentialBackOff that allows the specification of the maximum number of retries rather than the maximum elapsed time.
Since:
2.7.3
  • Constructor Details

    • ExponentialBackOffWithMaxRetries

      public ExponentialBackOffWithMaxRetries(int maxRetries)
      Construct an instance that will calculate the setMaxElapsedTime(long) from the maxRetries.
      Parameters:
      maxRetries - the max retries.
  • Method Details

    • getMaxRetries

      public int getMaxRetries()
      Get the max retries.
      Returns:
      the max retries.
    • setInitialInterval

      public void setInitialInterval(long initialInterval)
      Overrides:
      setInitialInterval in class org.springframework.util.backoff.ExponentialBackOff
    • setMultiplier

      public void setMultiplier(double multiplier)
      Overrides:
      setMultiplier in class org.springframework.util.backoff.ExponentialBackOff
    • setMaxInterval

      public void setMaxInterval(long maxInterval)
      Overrides:
      setMaxInterval in class org.springframework.util.backoff.ExponentialBackOff
    • setMaxElapsedTime

      public void setMaxElapsedTime(long maxElapsedTime)
      Overrides:
      setMaxElapsedTime in class org.springframework.util.backoff.ExponentialBackOff