Packages

final class MqttConnectionSettings extends AnyRef

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

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 auth: Option[(String, String)]
  6. val automaticReconnect: Boolean
  7. val broker: String
  8. val cleanSession: Boolean
  9. val clientId: String
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  11. val connectionTimeout: FiniteDuration
  12. val disconnectQuiesceTimeout: FiniteDuration
  13. val disconnectTimeout: FiniteDuration
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. val keepAliveInterval: FiniteDuration
  20. val maxInFlight: Int
  21. val mqttVersion: Int
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. val offlinePersistenceSettings: Option[MqttOfflinePersistenceSettings]
  26. val persistence: MqttClientPersistence
  27. val serverUris: Seq[String]
  28. val socketFactory: Option[SSLSocketFactory]
  29. val sslHostnameVerifier: Option[HostnameVerifier]
  30. val sslProperties: Map[String, String]
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    MqttConnectionSettings → AnyRef → Any
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. val will: Option[MqttMessage]
  37. def withAuth(username: String, password: String): MqttConnectionSettings
  38. def withAutomaticReconnect(value: Boolean): MqttConnectionSettings
  39. def withBroker(value: String): MqttConnectionSettings
  40. def withCleanSession(value: Boolean): MqttConnectionSettings
  41. def withClientId(clientId: String): MqttConnectionSettings
  42. def withConnectionTimeout(value: Duration): MqttConnectionSettings

    Java API

  43. def withConnectionTimeout(value: FiniteDuration): MqttConnectionSettings

    Scala API

  44. def withDisconnectQuiesceTimeout(value: Duration): MqttConnectionSettings

    Java API

  45. def withDisconnectQuiesceTimeout(value: FiniteDuration): MqttConnectionSettings

    Scala API

  46. def withDisconnectTimeout(value: Duration): MqttConnectionSettings

    Java API

  47. def withDisconnectTimeout(value: FiniteDuration): MqttConnectionSettings

    Scala API

  48. def withKeepAliveInterval(value: Duration): MqttConnectionSettings

    Java API

  49. def withKeepAliveInterval(value: FiniteDuration): MqttConnectionSettings

    Scala API

  50. def withMaxInFlight(value: Int): MqttConnectionSettings
  51. def withMqttVersion(value: Int): MqttConnectionSettings
  52. def withOfflinePersistenceSettings(bufferSize: Int = 5000, deleteOldestMessage: Boolean = false, persistBuffer: Boolean = true): MqttConnectionSettings
  53. def withPersistence(value: MqttClientPersistence): MqttConnectionSettings
  54. def withServerUri(value: String): MqttConnectionSettings
  55. def withServerUris(values: List[String]): MqttConnectionSettings

    Java API

  56. def withServerUris(values: Seq[String]): MqttConnectionSettings

    Scala API

  57. def withSocketFactory(value: SSLSocketFactory): MqttConnectionSettings
  58. def withSslHostnameVerifier(value: HostnameVerifier): MqttConnectionSettings
  59. def withSslProperties(value: Map[String, String]): MqttConnectionSettings

    Java API

  60. def withSslProperties(value: Map[String, String]): MqttConnectionSettings

    Scala API

  61. def withWill(value: MqttMessage): MqttConnectionSettings

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def withConnectionTimeout(connectionTimeout: Int, unit: TimeUnit): MqttConnectionSettings

    Annotations
    @Deprecated
    Deprecated

    use with java.time.Duration instead

  3. def withDisconnectQuiesceTimeout(disconnectQuiesceTimeout: Int, unit: TimeUnit): MqttConnectionSettings

    Annotations
    @Deprecated
    Deprecated

    use with java.time.Duration instead

  4. def withDisconnectTimeout(disconnectTimeout: Int, unit: TimeUnit): MqttConnectionSettings

    Annotations
    @Deprecated
    Deprecated

    use with java.time.Duration instead

  5. def withKeepAliveInterval(keepAliveInterval: Int, unit: TimeUnit): MqttConnectionSettings

    Annotations
    @Deprecated
    Deprecated

    use with java.time.Duration instead

Inherited from AnyRef

Inherited from Any

Ungrouped