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
  • Field Summary

    Fields inherited from class org.springframework.util.backoff.ExponentialBackOff

    DEFAULT_INITIAL_INTERVAL, DEFAULT_MAX_ATTEMPTS, DEFAULT_MAX_ELAPSED_TIME, DEFAULT_MAX_INTERVAL, DEFAULT_MULTIPLIER
  • Constructor Summary

    Constructors
    Constructor
    Description
    Construct an instance that will calculate the setMaxElapsedTime(long) from the maxRetries.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Get the max retries.
    void
    setInitialInterval(long initialInterval)
     
    void
    setMaxElapsedTime(long maxElapsedTime)
     
    void
    setMaxInterval(long maxInterval)
     
    void
    setMultiplier(double multiplier)
     

    Methods inherited from class org.springframework.util.backoff.ExponentialBackOff

    getInitialInterval, getMaxAttempts, getMaxElapsedTime, getMaxInterval, getMultiplier, setMaxAttempts, start

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 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