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

    Sets the list of enabled SSL/TLS protocols.

    Sets the list of enabled SSL/TLS 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
    @native() @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
    Annotations
    @native()
  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 getIdleTimeoutUnit: TimeUnit
  24. def getJdkSslEngineOptions: JdkSSLEngineOptions
  25. def getKeyStoreOptions: JksOptions
  26. def getLogActivity: Boolean
  27. def getMaxMessageSize: Int
  28. def getOpenSslEngineOptions: OpenSSLEngineOptions
  29. def getPemKeyCertOptions: PemKeyCertOptions
  30. def getPemTrustOptions: PemTrustOptions
  31. def getPfxKeyCertOptions: PfxOptions
  32. def getPfxTrustOptions: PfxOptions
  33. def getPort: Int
    Definition Classes
    MqttServerOptionsNetServerOptions
  34. def getReceiveBufferSize: Int
  35. def getSendBufferSize: Int
  36. def getSoLinger: Int
  37. def getTrafficClass: Int
  38. def getTrustStoreOptions: JksOptions
  39. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  40. def isAutoClientId: Boolean
  41. def isClientAuthRequired: Boolean
    Definition Classes
    MqttServerOptionsNetServerOptions
  42. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  43. def isReuseAddress: Boolean
  44. def isReusePort: Boolean
  45. def isSni: Boolean
    Definition Classes
    MqttServerOptionsNetServerOptions
  46. def isSsl: Boolean
  47. def isTcpCork: Boolean
  48. def isTcpFastOpen: Boolean
  49. def isTcpKeepAlive: Boolean
  50. def isTcpNoDelay: Boolean
  51. def isTcpQuickAck: Boolean
  52. def isUseAlpn: Boolean
  53. def isUsePooledBuffers: Boolean
  54. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  55. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  56. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  57. def setAcceptBacklog(value: Int): MqttServerOptions

    Set the accept back log

    Set the accept back log

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

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

  59. def setClientAuth(value: ClientAuth): MqttServerOptions

    Set whether client auth is required

    Set whether client auth is required

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

    Set whether client auth is required

    Set whether client auth is required

    Definition Classes
    MqttServerOptionsNetServerOptions
  61. def setEnabledSecureTransportProtocols(value: Set[String]): MqttServerOptions
  62. def setHost(value: String): MqttServerOptions

    Set the host

    Set the host

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

    Set the idle timeout, default time unit is seconds.

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

    If you want change default time unit, use NetServerOptions

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  64. def setIdleTimeoutUnit(value: TimeUnit): MqttServerOptions

    Set the idle timeout unit.

    Set the idle timeout unit. If not specified, default is seconds.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  65. def setJdkSslEngineOptions(value: JdkSSLEngineOptions): MqttServerOptions
  66. 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
  67. 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
  68. def setMaxMessageSize(value: Int): MqttServerOptions

    Set max MQTT message size

  69. def setOpenSslEngineOptions(value: OpenSSLEngineOptions): MqttServerOptions
  70. 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
  71. def setPemTrustOptions(value: PemTrustOptions): MqttServerOptions

    Set the trust options in pem format

    Set the trust options in pem format

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

    Set the key/cert options in pfx format.

    Set the key/cert options in pfx format.

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

    Set the trust options in pfx format

    Set the trust options in pfx format

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

    Set the port

    Set the port

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

    Set the TCP receive buffer size

    Set the TCP receive buffer size

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

    Set the value of reuse address

    Set the value of reuse address

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  77. def setReusePort(value: Boolean): MqttServerOptions

    Set the value of reuse port.

    Set the value of reuse port.

    This is only supported by native transports.

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

    Set the TCP send buffer size

    Set the TCP send buffer size

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

    Set whether the server supports Server Name Indiciation

    Set whether the server supports Server Name Indiciation

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

    Set whether SO_linger keep alive is enabled

    Set whether SO_linger keep alive is enabled

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

    Set whether SSL/TLS is enabled

    Set whether SSL/TLS is enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  82. def setTcpCork(value: Boolean): MqttServerOptions

    Enable the TCP_CORK option - only with linux native transport.

    Enable the TCP_CORK option - only with linux native transport.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  83. def setTcpFastOpen(value: Boolean): MqttServerOptions

    Enable the TCP_FASTOPEN option - only with linux native transport.

    Enable the TCP_FASTOPEN option - only with linux native transport.

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

    Set whether TCP keep alive is enabled

    Set whether TCP keep alive is enabled

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

    Set whether TCP no delay is enabled

    Set whether TCP no delay is enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  86. def setTcpQuickAck(value: Boolean): MqttServerOptions

    Enable the TCP_QUICKACK option - only with linux native transport.

    Enable the TCP_QUICKACK option - only with linux native transport.

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  87. def setTimeoutOnConnect(value: Int): MqttServerOptions

    Set the timeout on CONNECT packet

  88. def setTrafficClass(value: Int): MqttServerOptions

    Set the value of traffic class

    Set the value of traffic class

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  89. 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
  90. def setUseAlpn(value: Boolean): MqttServerOptions

    Set the ALPN usage.

    Set the ALPN usage.

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

    Set whether Netty pooled buffers are enabled

    Set whether Netty pooled buffers are enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  92. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  93. def toString(): String
    Definition Classes
    AnyRef → Any
  94. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  95. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  96. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from NetServerOptions

Inherited from TCPSSLOptions

Inherited from NetworkOptions

Inherited from AnyRef

Inherited from Any

Ungrouped