c

io.vertx.scala.core.net

ClientOptionsBase

abstract class ClientOptionsBase extends TCPSSLOptions

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ClientOptionsBase
  2. TCPSSLOptions
  3. NetworkOptions
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ClientOptionsBase(_asJava: core.net.ClientOptionsBase)

Abstract Value Members

  1. abstract def addCrlPath(value: String): TCPSSLOptions

    Add a CRL path

    Add a CRL path

    Definition Classes
    TCPSSLOptions
  2. abstract def addCrlValue(value: Buffer): TCPSSLOptions

    Add a CRL value

    Add a CRL value

    Definition Classes
    TCPSSLOptions
  3. abstract def addEnabledCipherSuite(value: String): TCPSSLOptions

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

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

    Definition Classes
    TCPSSLOptions
  4. abstract def addEnabledSecureTransportProtocol(value: String): TCPSSLOptions

    Sets the list of enabled SSL/TLS protocols.

    Sets the list of enabled SSL/TLS protocols.

    Definition Classes
    TCPSSLOptions
  5. abstract def getConnectTimeout: Int
  6. abstract def getCrlPaths: Buffer[String]
    Definition Classes
    TCPSSLOptions
  7. abstract def getCrlValues: Buffer[Buffer]
    Definition Classes
    TCPSSLOptions
  8. abstract def getEnabledCipherSuites: Set[String]
    Definition Classes
    TCPSSLOptions
  9. abstract def getEnabledSecureTransportProtocols: Set[String]
    Definition Classes
    TCPSSLOptions
  10. abstract def getIdleTimeout: Int
    Definition Classes
    TCPSSLOptions
  11. abstract def getIdleTimeoutUnit: TimeUnit
    Definition Classes
    TCPSSLOptions
  12. abstract def getJdkSslEngineOptions: JdkSSLEngineOptions
    Definition Classes
    TCPSSLOptions
  13. abstract def getKeyStoreOptions: JksOptions
    Definition Classes
    TCPSSLOptions
  14. abstract def getLocalAddress: String
  15. abstract def getLogActivity: Boolean
    Definition Classes
    NetworkOptions
  16. abstract def getMetricsName: String
  17. abstract def getOpenSslEngineOptions: OpenSSLEngineOptions
    Definition Classes
    TCPSSLOptions
  18. abstract def getPemKeyCertOptions: PemKeyCertOptions
    Definition Classes
    TCPSSLOptions
  19. abstract def getPemTrustOptions: PemTrustOptions
    Definition Classes
    TCPSSLOptions
  20. abstract def getPfxKeyCertOptions: PfxOptions
    Definition Classes
    TCPSSLOptions
  21. abstract def getPfxTrustOptions: PfxOptions
    Definition Classes
    TCPSSLOptions
  22. abstract def getProxyOptions: ProxyOptions
  23. abstract def getReceiveBufferSize: Int
    Definition Classes
    NetworkOptions
  24. abstract def getSendBufferSize: Int
    Definition Classes
    NetworkOptions
  25. abstract def getSoLinger: Int
    Definition Classes
    TCPSSLOptions
  26. abstract def getSslHandshakeTimeout: Long
    Definition Classes
    TCPSSLOptions
  27. abstract def getSslHandshakeTimeoutUnit: TimeUnit
    Definition Classes
    TCPSSLOptions
  28. abstract def getTrafficClass: Int
    Definition Classes
    NetworkOptions
  29. abstract def getTrustStoreOptions: JksOptions
    Definition Classes
    TCPSSLOptions
  30. abstract def isReuseAddress: Boolean
    Definition Classes
    NetworkOptions
  31. abstract def isReusePort: Boolean
    Definition Classes
    NetworkOptions
  32. abstract def isSsl: Boolean
    Definition Classes
    TCPSSLOptions
  33. abstract def isTcpCork: Boolean
    Definition Classes
    TCPSSLOptions
  34. abstract def isTcpFastOpen: Boolean
    Definition Classes
    TCPSSLOptions
  35. abstract def isTcpKeepAlive: Boolean
    Definition Classes
    TCPSSLOptions
  36. abstract def isTcpNoDelay: Boolean
    Definition Classes
    TCPSSLOptions
  37. abstract def isTcpQuickAck: Boolean
    Definition Classes
    TCPSSLOptions
  38. abstract def isTrustAll: Boolean
  39. abstract def isUseAlpn: Boolean
    Definition Classes
    TCPSSLOptions
  40. abstract def isUsePooledBuffers: Boolean
    Definition Classes
    TCPSSLOptions
  41. abstract def setConnectTimeout(value: Int): ClientOptionsBase

    Set the connect timeout

  42. abstract def setEnabledSecureTransportProtocols(value: Set[String]): TCPSSLOptions
    Definition Classes
    TCPSSLOptions
  43. abstract def setIdleTimeout(value: Int): TCPSSLOptions

    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 TCPSSLOptions

    Definition Classes
    TCPSSLOptions
  44. abstract def setIdleTimeoutUnit(value: TimeUnit): TCPSSLOptions

    Set the idle timeout unit.

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

    Definition Classes
    TCPSSLOptions
  45. abstract def setJdkSslEngineOptions(value: JdkSSLEngineOptions): TCPSSLOptions
    Definition Classes
    TCPSSLOptions
  46. abstract def setKeyStoreOptions(value: JksOptions): TCPSSLOptions

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

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

    Definition Classes
    TCPSSLOptions
  47. abstract def setLocalAddress(value: String): ClientOptionsBase

    Set the local interface to bind for network connections.

    Set the local interface to bind for network connections. When the local address is null, it will pick any local address, the default local address is null.

  48. abstract def setLogActivity(value: Boolean): NetworkOptions

    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
    NetworkOptions
  49. abstract def setMetricsName(value: String): ClientOptionsBase

    Set the metrics name identifying the reported metrics, useful for grouping metrics with the same name.

  50. abstract def setOpenSslEngineOptions(value: OpenSSLEngineOptions): TCPSSLOptions
    Definition Classes
    TCPSSLOptions
  51. abstract def setPemKeyCertOptions(value: PemKeyCertOptions): TCPSSLOptions

    Set the key/cert store options in pem format.

    Set the key/cert store options in pem format.

    Definition Classes
    TCPSSLOptions
  52. abstract def setPemTrustOptions(value: PemTrustOptions): TCPSSLOptions

    Set the trust options in pem format

    Set the trust options in pem format

    Definition Classes
    TCPSSLOptions
  53. abstract def setPfxKeyCertOptions(value: PfxOptions): TCPSSLOptions

    Set the key/cert options in pfx format.

    Set the key/cert options in pfx format.

    Definition Classes
    TCPSSLOptions
  54. abstract def setPfxTrustOptions(value: PfxOptions): TCPSSLOptions

    Set the trust options in pfx format

    Set the trust options in pfx format

    Definition Classes
    TCPSSLOptions
  55. abstract def setProxyOptions(value: ProxyOptions): ClientOptionsBase

    Set proxy options for connections via CONNECT proxy (e.g.

    Set proxy options for connections via CONNECT proxy (e.g. Squid) or a SOCKS proxy.

  56. abstract def setReceiveBufferSize(value: Int): NetworkOptions

    Set the TCP receive buffer size

    Set the TCP receive buffer size

    Definition Classes
    NetworkOptions
  57. abstract def setReuseAddress(value: Boolean): NetworkOptions

    Set the value of reuse address

    Set the value of reuse address

    Definition Classes
    NetworkOptions
  58. abstract def setReusePort(value: Boolean): NetworkOptions

    Set the value of reuse port.

    Set the value of reuse port.

    This is only supported by native transports.

    Definition Classes
    NetworkOptions
  59. abstract def setSendBufferSize(value: Int): NetworkOptions

    Set the TCP send buffer size

    Set the TCP send buffer size

    Definition Classes
    NetworkOptions
  60. abstract def setSoLinger(value: Int): TCPSSLOptions

    Set whether SO_linger keep alive is enabled

    Set whether SO_linger keep alive is enabled

    Definition Classes
    TCPSSLOptions
  61. abstract def setSsl(value: Boolean): TCPSSLOptions

    Set whether SSL/TLS is enabled

    Set whether SSL/TLS is enabled

    Definition Classes
    TCPSSLOptions
  62. abstract def setSslHandshakeTimeout(value: Long): TCPSSLOptions

    Set the SSL handshake timeout, default time unit is seconds.

    Set the SSL handshake timeout, default time unit is seconds.

    Definition Classes
    TCPSSLOptions
  63. abstract def setSslHandshakeTimeoutUnit(value: TimeUnit): TCPSSLOptions

    Set the SSL handshake timeout unit.

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

    Definition Classes
    TCPSSLOptions
  64. abstract def setTcpCork(value: Boolean): TCPSSLOptions

    Enable the TCP_CORK option - only with linux native transport.

    Enable the TCP_CORK option - only with linux native transport.

    Definition Classes
    TCPSSLOptions
  65. abstract def setTcpFastOpen(value: Boolean): TCPSSLOptions

    Enable the TCP_FASTOPEN option - only with linux native transport.

    Enable the TCP_FASTOPEN option - only with linux native transport.

    Definition Classes
    TCPSSLOptions
  66. abstract def setTcpKeepAlive(value: Boolean): TCPSSLOptions

    Set whether TCP keep alive is enabled

    Set whether TCP keep alive is enabled

    Definition Classes
    TCPSSLOptions
  67. abstract def setTcpNoDelay(value: Boolean): TCPSSLOptions

    Set whether TCP no delay is enabled

    Set whether TCP no delay is enabled

    Definition Classes
    TCPSSLOptions
  68. abstract def setTcpQuickAck(value: Boolean): TCPSSLOptions

    Enable the TCP_QUICKACK option - only with linux native transport.

    Enable the TCP_QUICKACK option - only with linux native transport.

    Definition Classes
    TCPSSLOptions
  69. abstract def setTrafficClass(value: Int): NetworkOptions

    Set the value of traffic class

    Set the value of traffic class

    Definition Classes
    NetworkOptions
  70. abstract def setTrustAll(value: Boolean): ClientOptionsBase

    Set whether all server certificates should be trusted

  71. abstract def setTrustStoreOptions(value: JksOptions): TCPSSLOptions

    Set the trust options in jks format, aka Java truststore

    Set the trust options in jks format, aka Java truststore

    Definition Classes
    TCPSSLOptions
  72. abstract def setUseAlpn(value: Boolean): TCPSSLOptions

    Set the ALPN usage.

    Set the ALPN usage.

    Definition Classes
    TCPSSLOptions
  73. abstract def setUsePooledBuffers(value: Boolean): TCPSSLOptions

    Set whether Netty pooled buffers are enabled

    Set whether Netty pooled buffers are enabled

    Definition Classes
    TCPSSLOptions

Concrete 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. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from TCPSSLOptions

Inherited from NetworkOptions

Inherited from AnyRef

Inherited from Any

Ungrouped