Package akka.pattern

Class RetrySupport$

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static RetrySupport$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Constructor Summary

      Constructors 
      Constructor Description
      RetrySupport$()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      scala.concurrent.duration.FiniteDuration calculateExponentialBackoffDelay​(int attempt, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor)
      Calculates an exponential back off delay.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final RetrySupport$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • RetrySupport$

        public RetrySupport$()
    • Method Detail

      • calculateExponentialBackoffDelay

        public scala.concurrent.duration.FiniteDuration calculateExponentialBackoffDelay​(int attempt,
                                                                                         scala.concurrent.duration.FiniteDuration minBackoff,
                                                                                         scala.concurrent.duration.FiniteDuration maxBackoff,
                                                                                         double randomFactor)
        Calculates an exponential back off delay.