Packages

class ProtonServerOptions extends NetServerOptions

Options for configuring io.vertx.scala.proton.ProtonServer creation.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProtonServerOptions
  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 ProtonServerOptions(_asJava: proton.ProtonServerOptions)

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): ProtonServerOptions

    Add a CRL path

    Add a CRL path

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  5. def addCrlValue(value: Buffer): ProtonServerOptions

    Add a CRL value

    Add a CRL value

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  6. def addEnabledCipherSuite(value: String): ProtonServerOptions

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

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

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  7. def addEnabledSecureTransportProtocol(value: String): ProtonServerOptions

    Sets the list of enabled SSL/TLS protocols.

    Sets the list of enabled SSL/TLS protocols.

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def asJava: proton.ProtonServerOptions
    Definition Classes
    ProtonServerOptionsNetServerOptions
  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
    ProtonServerOptionsNetServerOptions
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def getClientAuth: ClientAuth
    Definition Classes
    ProtonServerOptionsNetServerOptions
  17. def getCrlPaths: Buffer[String]
  18. def getCrlValues: Buffer[Buffer]
  19. def getEnabledCipherSuites: Set[String]
  20. def getEnabledSecureTransportProtocols: Set[String]
  21. def getHeartbeat: Int
  22. def getHost: String
    Definition Classes
    ProtonServerOptionsNetServerOptions
  23. def getIdleTimeout: Int
  24. def getIdleTimeoutUnit: TimeUnit
  25. def getJdkSslEngineOptions: JdkSSLEngineOptions
  26. def getKeyStoreOptions: JksOptions
  27. def getLogActivity: Boolean
  28. def getMaxFrameSize: Int
  29. def getOpenSslEngineOptions: OpenSSLEngineOptions
  30. def getPemKeyCertOptions: PemKeyCertOptions
  31. def getPemTrustOptions: PemTrustOptions
  32. def getPfxKeyCertOptions: PfxOptions
  33. def getPfxTrustOptions: PfxOptions
  34. def getPort: Int
    Definition Classes
    ProtonServerOptionsNetServerOptions
  35. def getReceiveBufferSize: Int
  36. def getSendBufferSize: Int
  37. def getSoLinger: Int
  38. def getTrafficClass: Int
  39. def getTrustStoreOptions: JksOptions
  40. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  41. def isClientAuthRequired: Boolean
    Definition Classes
    ProtonServerOptionsNetServerOptions
  42. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  43. def isReuseAddress: Boolean
  44. def isReusePort: Boolean
  45. def isSni: Boolean
    Definition Classes
    ProtonServerOptionsNetServerOptions
  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): ProtonServerOptions

    Set the accept back log

    Set the accept back log

    Definition Classes
    ProtonServerOptionsNetServerOptions
  58. def setClientAuth(value: ClientAuth): ProtonServerOptions

    Set whether client auth is required

    Set whether client auth is required

    Definition Classes
    ProtonServerOptionsNetServerOptions
  59. def setClientAuthRequired(value: Boolean): ProtonServerOptions

    Set whether client auth is required

    Set whether client auth is required

    Definition Classes
    ProtonServerOptionsNetServerOptions
  60. def setEnabledSecureTransportProtocols(value: Set[String]): ProtonServerOptions
  61. def setHeartbeat(value: Int): ProtonServerOptions

    Sets the heart beat (in milliseconds) as maximum delay between sending frames for the remote peers.

    Sets the heart beat (in milliseconds) as maximum delay between sending frames for the remote peers. If no frames are received within 2 * heart beat, the connection is closed.

  62. def setHost(value: String): ProtonServerOptions

    Set the host

    Set the host

    Definition Classes
    ProtonServerOptionsNetServerOptions
  63. def setIdleTimeout(value: Int): ProtonServerOptions

    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
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  64. def setIdleTimeoutUnit(value: TimeUnit): ProtonServerOptions

    Set the idle timeout unit.

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

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  65. def setJdkSslEngineOptions(value: JdkSSLEngineOptions): ProtonServerOptions
  66. def setKeyStoreOptions(value: JksOptions): ProtonServerOptions

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

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

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  67. def setLogActivity(value: Boolean): ProtonServerOptions

    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
    ProtonServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  68. def setMaxFrameSize(value: Int): ProtonServerOptions

    Sets the maximum frame size for connections.

    Sets the maximum frame size for connections.

    If this property is not set explicitly, a reasonable default value is used.

    Setting this property to a negative value will result in no maximum frame size being announced at all.

  69. def setOpenSslEngineOptions(value: OpenSSLEngineOptions): ProtonServerOptions
  70. def setPemKeyCertOptions(value: PemKeyCertOptions): ProtonServerOptions

    Set the key/cert store options in pem format.

    Set the key/cert store options in pem format.

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  71. def setPemTrustOptions(value: PemTrustOptions): ProtonServerOptions

    Set the trust options in pem format

    Set the trust options in pem format

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  72. def setPfxKeyCertOptions(value: PfxOptions): ProtonServerOptions

    Set the key/cert options in pfx format.

    Set the key/cert options in pfx format.

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  73. def setPfxTrustOptions(value: PfxOptions): ProtonServerOptions

    Set the trust options in pfx format

    Set the trust options in pfx format

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  74. def setPort(value: Int): ProtonServerOptions

    Set the port

    Set the port

    Definition Classes
    ProtonServerOptionsNetServerOptions
  75. def setReceiveBufferSize(value: Int): ProtonServerOptions

    Set the TCP receive buffer size

    Set the TCP receive buffer size

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  76. def setReuseAddress(value: Boolean): ProtonServerOptions

    Set the value of reuse address

    Set the value of reuse address

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  77. def setReusePort(value: Boolean): ProtonServerOptions

    Set the value of reuse port.

    Set the value of reuse port.

    This is only supported by native transports.

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  78. def setSendBufferSize(value: Int): ProtonServerOptions

    Set the TCP send buffer size

    Set the TCP send buffer size

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  79. def setSni(value: Boolean): ProtonServerOptions

    Set whether the server supports Server Name Indiciation

    Set whether the server supports Server Name Indiciation

    Definition Classes
    ProtonServerOptionsNetServerOptions
  80. def setSoLinger(value: Int): ProtonServerOptions

    Set whether SO_linger keep alive is enabled

    Set whether SO_linger keep alive is enabled

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  81. def setSsl(value: Boolean): ProtonServerOptions

    Set whether SSL/TLS is enabled

    Set whether SSL/TLS is enabled

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  82. def setTcpCork(value: Boolean): ProtonServerOptions

    Enable the TCP_CORK option - only with linux native transport.

    Enable the TCP_CORK option - only with linux native transport.

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  83. def setTcpFastOpen(value: Boolean): ProtonServerOptions

    Enable the TCP_FASTOPEN option - only with linux native transport.

    Enable the TCP_FASTOPEN option - only with linux native transport.

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  84. def setTcpKeepAlive(value: Boolean): ProtonServerOptions

    Set whether TCP keep alive is enabled

    Set whether TCP keep alive is enabled

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  85. def setTcpNoDelay(value: Boolean): ProtonServerOptions

    Set whether TCP no delay is enabled

    Set whether TCP no delay is enabled

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  86. def setTcpQuickAck(value: Boolean): ProtonServerOptions

    Enable the TCP_QUICKACK option - only with linux native transport.

    Enable the TCP_QUICKACK option - only with linux native transport.

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  87. def setTrafficClass(value: Int): ProtonServerOptions

    Set the value of traffic class

    Set the value of traffic class

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  88. def setTrustStoreOptions(value: JksOptions): ProtonServerOptions

    Set the trust options in jks format, aka Java truststore

    Set the trust options in jks format, aka Java truststore

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  89. def setUseAlpn(value: Boolean): ProtonServerOptions

    Set the ALPN usage.

    Set the ALPN usage.

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  90. def setUsePooledBuffers(value: Boolean): ProtonServerOptions

    Set whether Netty pooled buffers are enabled

    Set whether Netty pooled buffers are enabled

    Definition Classes
    ProtonServerOptionsNetServerOptionsTCPSSLOptions
  91. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  92. def toString(): String
    Definition Classes
    AnyRef → Any
  93. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  94. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  95. 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