final class ConnectionRetrySettings extends AnyRef

When a connection to a broker cannot be established and errors out, or is timing out being established or started, the connection can be retried. All JMS publishers, consumers, and browsers are configured with connection retry settings.

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val backoffFactor: Double
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. val connectTimeout: FiniteDuration
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. val initialRetry: FiniteDuration
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. val maxBackoff: FiniteDuration
  16. val maxRetries: Int
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    ConnectionRetrySettings → AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. def waitTime(retryNumber: Int): FiniteDuration

    The wait time before the next attempt may be made.

  26. def withBackoffFactor(value: Double): ConnectionRetrySettings

    Back-off factor for subsequent retries.

  27. def withConnectTimeout(value: Duration): ConnectionRetrySettings

    Java API: Time allowed to establish and start a connection.

  28. def withConnectTimeout(value: FiniteDuration): ConnectionRetrySettings

    Time allowed to establish and start a connection.

  29. def withInfiniteRetries(): ConnectionRetrySettings

    Do not limit the number of retries.

  30. def withInitialRetry(value: Duration): ConnectionRetrySettings

    Java API: Wait time before retrying the first time.

  31. def withInitialRetry(value: FiniteDuration): ConnectionRetrySettings

    Wait time before retrying the first time.

  32. def withMaxBackoff(value: Duration): ConnectionRetrySettings

    Java API: Maximum back-off time allowed, after which all retries will happen after this delay.

  33. def withMaxBackoff(value: FiniteDuration): ConnectionRetrySettings

    Maximum back-off time allowed, after which all retries will happen after this delay.

  34. def withMaxRetries(value: Int): ConnectionRetrySettings

    Maximum number of retries allowed.

Inherited from AnyRef

Inherited from Any

Ungrouped