Packages

class MqttServerOptions extends NetServerOptions

Represents options used by the MQTT server

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MqttServerOptions
  2. NetServerOptions
  3. TCPSSLOptions
  4. NetworkOptions
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MqttServerOptions(_asJava: mqtt.MqttServerOptions)

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. def addCrlPath(value: String): MqttServerOptions

    Add a CRL path

    Add a CRL path

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  5. def addCrlValue(value: Buffer): MqttServerOptions

    Add a CRL value

    Add a CRL value

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  6. def addEnabledCipherSuite(value: String): MqttServerOptions

    Add an enabled cipher suite, appended to the ordered suites.

    Add an enabled cipher suite, appended to the ordered suites.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  7. def addEnabledSecureTransportProtocol(value: String): MqttServerOptions

    Add an enabled SSL/TLS protocols, appended to the ordered protocols.

    Add an enabled SSL/TLS protocols, appended to the ordered protocols.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def asJava: mqtt.MqttServerOptions
    Definition Classes
    MqttServerOptionsNetServerOptions
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def getAcceptBacklog: Int
    Definition Classes
    MqttServerOptionsNetServerOptions
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  16. def getClientAuth: ClientAuth
    Definition Classes
    MqttServerOptionsNetServerOptions
  17. def getCrlPaths: Buffer[String]
  18. def getCrlValues: Buffer[Buffer]
  19. def getEnabledCipherSuites: Set[String]
  20. def getEnabledSecureTransportProtocols: Set[String]
  21. def getHost: String
    Definition Classes
    MqttServerOptionsNetServerOptions
  22. def getIdleTimeout: Int
  23. def getJdkSslEngineOptions: JdkSSLEngineOptions
  24. def getKeyStoreOptions: JksOptions
  25. def getLogActivity: Boolean
  26. def getMaxMessageSize: Int
  27. def getOpenSslEngineOptions: OpenSSLEngineOptions
  28. def getPemKeyCertOptions: PemKeyCertOptions
  29. def getPemTrustOptions: PemTrustOptions
  30. def getPfxKeyCertOptions: PfxOptions
  31. def getPfxTrustOptions: PfxOptions
  32. def getPort: Int
    Definition Classes
    MqttServerOptionsNetServerOptions
  33. def getReceiveBufferSize: Int
  34. def getSendBufferSize: Int
  35. def getSoLinger: Int
  36. def getTrafficClass: Int
  37. def getTrustStoreOptions: JksOptions
  38. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  39. def isAutoClientId: Boolean
  40. def isClientAuthRequired: Boolean
    Definition Classes
    MqttServerOptionsNetServerOptions
  41. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  42. def isReuseAddress: Boolean
  43. def isSni: Boolean
    Definition Classes
    MqttServerOptionsNetServerOptions
  44. def isSsl: Boolean
  45. def isTcpKeepAlive: Boolean
  46. def isTcpNoDelay: Boolean
  47. def isUseAlpn: Boolean
  48. def isUsePooledBuffers: Boolean
  49. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  50. final def notify(): Unit
    Definition Classes
    AnyRef
  51. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  52. def setAcceptBacklog(value: Int): MqttServerOptions

    Set the accept back log

    Set the accept back log

    Definition Classes
    MqttServerOptionsNetServerOptions
  53. def setAutoClientId(value: Boolean): MqttServerOptions

    Set if clientid should be auto-generated when it's "zero-bytes"

  54. def setClientAuth(value: ClientAuth): MqttServerOptions

    Set whether client auth is required

    Set whether client auth is required

    Definition Classes
    MqttServerOptionsNetServerOptions
  55. def setClientAuthRequired(value: Boolean): MqttServerOptions

    Set whether client auth is required

    Set whether client auth is required

    Definition Classes
    MqttServerOptionsNetServerOptions
  56. def setHost(value: String): MqttServerOptions

    Set the host

    Set the host

    Definition Classes
    MqttServerOptionsNetServerOptions
  57. def setIdleTimeout(value: Int): MqttServerOptions

    Set the idle timeout, in seconds.

    Set the idle timeout, in seconds. zero means don't timeout. This determines if a connection will timeout and be closed if no data is received within the timeout.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  58. def setJdkSslEngineOptions(value: JdkSSLEngineOptions): MqttServerOptions
  59. def setKeyStoreOptions(value: JksOptions): MqttServerOptions

    Set the key/cert options in jks format, aka Java keystore.

    Set the key/cert options in jks format, aka Java keystore.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  60. def setLogActivity(value: Boolean): MqttServerOptions

    Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

    Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  61. def setMaxMessageSize(value: Int): MqttServerOptions

    Set max MQTT message size

  62. def setOpenSslEngineOptions(value: OpenSSLEngineOptions): MqttServerOptions
  63. def setPemKeyCertOptions(value: PemKeyCertOptions): MqttServerOptions

    Set the key/cert store options in pem format.

    Set the key/cert store options in pem format.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  64. def setPemTrustOptions(value: PemTrustOptions): MqttServerOptions

    Set the trust options in pem format

    Set the trust options in pem format

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  65. def setPfxKeyCertOptions(value: PfxOptions): MqttServerOptions

    Set the key/cert options in pfx format.

    Set the key/cert options in pfx format.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  66. def setPfxTrustOptions(value: PfxOptions): MqttServerOptions

    Set the trust options in pfx format

    Set the trust options in pfx format

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  67. def setPort(value: Int): MqttServerOptions

    Set the port

    Set the port

    Definition Classes
    MqttServerOptionsNetServerOptions
  68. def setReceiveBufferSize(value: Int): MqttServerOptions

    Set the TCP receive buffer size

    Set the TCP receive buffer size

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  69. def setReuseAddress(value: Boolean): MqttServerOptions

    Set the value of reuse address

    Set the value of reuse address

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  70. def setSendBufferSize(value: Int): MqttServerOptions

    Set the TCP send buffer size

    Set the TCP send buffer size

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  71. def setSni(value: Boolean): MqttServerOptions

    Set whether the server supports Server Name Indiciation

    Set whether the server supports Server Name Indiciation

    Definition Classes
    MqttServerOptionsNetServerOptions
  72. def setSoLinger(value: Int): MqttServerOptions

    Set whether SO_linger keep alive is enabled

    Set whether SO_linger keep alive is enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  73. def setSsl(value: Boolean): MqttServerOptions

    Set whether SSL/TLS is enabled

    Set whether SSL/TLS is enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  74. def setTcpKeepAlive(value: Boolean): MqttServerOptions

    Set whether TCP keep alive is enabled

    Set whether TCP keep alive is enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  75. def setTcpNoDelay(value: Boolean): MqttServerOptions

    Set whether TCP no delay is enabled

    Set whether TCP no delay is enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  76. def setTrafficClass(value: Int): MqttServerOptions

    Set the value of traffic class

    Set the value of traffic class

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  77. def setTrustStoreOptions(value: JksOptions): MqttServerOptions

    Set the trust options in jks format, aka Java truststore

    Set the trust options in jks format, aka Java truststore

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  78. def setUseAlpn(value: Boolean): MqttServerOptions

    Set the ALPN usage.

    Set the ALPN usage.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  79. def setUsePooledBuffers(value: Boolean): MqttServerOptions

    Set whether Netty pooled buffers are enabled

    Set whether Netty pooled buffers are enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  80. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  81. def toString(): String
    Definition Classes
    AnyRef → Any
  82. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  83. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  84. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from NetServerOptions

Inherited from TCPSSLOptions

Inherited from NetworkOptions

Inherited from AnyRef

Inherited from Any

Ungrouped