final class RetrySettings extends AnyRef

Source
settings.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RetrySettings
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def equals(other: Any): Boolean
    Definition Classes
    RetrySettings → AnyRef → Any
  2. def getMaxBackoff: Duration

    Java API

  3. def getMaxRetries: Int

    Java API

  4. def getMinBackoff: Duration

    Java API

  5. def getRandomFactor: Double

    Java API

  6. def hashCode(): Int
    Definition Classes
    RetrySettings → AnyRef → Any
  7. val maxBackoff: FiniteDuration
  8. val maxRetries: Int
  9. val minBackoff: FiniteDuration
  10. val randomFactor: Double
  11. def toString(): String
    Definition Classes
    RetrySettings → AnyRef → Any
  12. def withMaxBackoff(value: Duration): RetrySettings

    Java API

  13. def withMaxBackoff(value: FiniteDuration): RetrySettings
  14. def withMaxRetries(value: Int): RetrySettings
  15. def withMinBackoff(value: Duration): RetrySettings

    Java API

  16. def withMinBackoff(value: FiniteDuration): RetrySettings
  17. def withRandomFactor(value: Double): RetrySettings