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 isClientAuthRequired: Boolean
    Definition Classes
    MqttServerOptionsNetServerOptions
  40. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  41. def isReuseAddress: Boolean
  42. def isSsl: Boolean
  43. def isTcpKeepAlive: Boolean
  44. def isTcpNoDelay: Boolean
  45. def isUseAlpn: Boolean
  46. def isUsePooledBuffers: Boolean
  47. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  48. final def notify(): Unit
    Definition Classes
    AnyRef
  49. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  50. def setAcceptBacklog(value: Int): MqttServerOptions

    Set the accept back log

    Set the accept back log

    Definition Classes
    MqttServerOptionsNetServerOptions
  51. def setClientAuth(value: ClientAuth): MqttServerOptions

    Set whether client auth is required

    Set whether client auth is required

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

    Set whether client auth is required

    Set whether client auth is required

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

    Set the host

    Set the host

    Definition Classes
    MqttServerOptionsNetServerOptions
  54. 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
  55. def setJdkSslEngineOptions(value: JdkSSLEngineOptions): MqttServerOptions
  56. 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
  57. 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
  58. def setMaxMessageSize(value: Int): MqttServerOptions

    Set max MQTT message size

  59. def setOpenSslEngineOptions(value: OpenSSLEngineOptions): MqttServerOptions
  60. 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
  61. def setPemTrustOptions(value: PemTrustOptions): MqttServerOptions

    Set the trust options in pem format

    Set the trust options in pem format

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

    Set the key/cert options in pfx format.

    Set the key/cert options in pfx format.

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

    Set the trust options in pfx format

    Set the trust options in pfx format

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

    Set the port

    Set the port

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

    Set the TCP receive buffer size

    Set the TCP receive buffer size

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

    Set the value of reuse address

    Set the value of reuse address

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

    Set the TCP send buffer size

    Set the TCP send buffer size

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  68. def setSoLinger(value: Int): MqttServerOptions

    Set whether SO_linger keep alive is enabled

    Set whether SO_linger keep alive is enabled

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

    Set whether SSL/TLS is enabled

    Set whether SSL/TLS is enabled

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

    Set whether TCP keep alive is enabled

    Set whether TCP keep alive is enabled

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

    Set whether TCP no delay is enabled

    Set whether TCP no delay is enabled

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

    Set the value of traffic class

    Set the value of traffic class

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

    Set the ALPN usage.

    Set the ALPN usage.

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

    Set whether Netty pooled buffers are enabled

    Set whether Netty pooled buffers are enabled

    Definition Classes
    MqttServerOptionsNetServerOptionsTCPSSLOptions
  76. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  77. def toString(): String
    Definition Classes
    AnyRef → Any
  78. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  79. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  80. 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