Class

com.sandinh.paho.akka

PSConfig

Related Doc: package akka

Permalink

case class PSConfig(brokerUrl: String, _clientId: String = null, conOpt: MqttConnectOptions = ConnOptions().get, stashTimeToLive: Duration = 1.minute, stashCapacity: Int = 8000, reconnectDelayMin: FiniteDuration = 10.millis, reconnectDelayMax: FiniteDuration = 30.seconds) extends Product with Serializable

brokerUrl

ex tcp://test.mosquitto.org:1883

_clientId

MqttAsyncClient id. If left null, the code falls back to a generated ID.

stashTimeToLive

messages received when disconnected will be stash. Messages isOverdue after stashTimeToLive will be discard. See also stashCapacity

stashCapacity

pubSubStash will be drop first haft elems when reach this size

reconnectDelayMin

when received Disconnected event, we will first delay reconnectDelayMin to try Connect. + if connect success => we reinit connectCount + else => ConnListener.onFailure will send Disconnected to this FSM => we re-schedule Connect with

delay = reconnectDelayMin * 2^connectCount
reconnectDelayMax

max delay to retry connecting

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PSConfig
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PSConfig(brokerUrl: String, _clientId: String = null, conOpt: MqttConnectOptions = ConnOptions().get, stashTimeToLive: Duration = 1.minute, stashCapacity: Int = 8000, reconnectDelayMin: FiniteDuration = 10.millis, reconnectDelayMax: FiniteDuration = 30.seconds)

    Permalink

    brokerUrl

    ex tcp://test.mosquitto.org:1883

    _clientId

    MqttAsyncClient id. If left null, the code falls back to a generated ID.

    stashTimeToLive

    messages received when disconnected will be stash. Messages isOverdue after stashTimeToLive will be discard. See also stashCapacity

    stashCapacity

    pubSubStash will be drop first haft elems when reach this size

    reconnectDelayMin

    when received Disconnected event, we will first delay reconnectDelayMin to try Connect. + if connect success => we reinit connectCount + else => ConnListener.onFailure will send Disconnected to this FSM => we re-schedule Connect with

    delay = reconnectDelayMin * 2^connectCount
    reconnectDelayMax

    max delay to retry connecting

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val _clientId: String

    Permalink

    MqttAsyncClient id.

    MqttAsyncClient id. If left null, the code falls back to a generated ID.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val brokerUrl: String

    Permalink

    ex tcp://test.mosquitto.org:1883

  7. def clientId(): String

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val conOpt: MqttConnectOptions

    Permalink
  10. val connectCountMax: Int

    Permalink
  11. def connectDelay(connectCount: Int): FiniteDuration

    Permalink
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. val reconnectDelayMax: FiniteDuration

    Permalink

    max delay to retry connecting

  20. val reconnectDelayMin: FiniteDuration

    Permalink

    when received Disconnected event, we will first delay reconnectDelayMin to try Connect.

    when received Disconnected event, we will first delay reconnectDelayMin to try Connect. + if connect success => we reinit connectCount + else => ConnListener.onFailure will send Disconnected to this FSM => we re-schedule Connect with

    delay = reconnectDelayMin * 2^connectCount
  21. val stashCapacity: Int

    Permalink

    pubSubStash will be drop first haft elems when reach this size

  22. val stashTimeToLive: Duration

    Permalink

    messages received when disconnected will be stash.

    messages received when disconnected will be stash. Messages isOverdue after stashTimeToLive will be discard. See also stashCapacity

  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped