Packages

class AmqpBridgeOptions extends AnyRef

Options for configuring the AmqpBridge.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AmqpBridgeOptions
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AmqpBridgeOptions(_asJava: amqpbridge.AmqpBridgeOptions)

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): AmqpBridgeOptions
  5. def addCrlValue(value: Buffer): AmqpBridgeOptions
  6. def addEnabledCipherSuite(value: String): AmqpBridgeOptions
  7. def addEnabledSaslMechanism(value: String): AmqpBridgeOptions
  8. def addEnabledSecureTransportProtocol(value: String): AmqpBridgeOptions
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def asJava: amqpbridge.AmqpBridgeOptions
  11. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  16. def getConnectTimeout: Int
  17. def getContainerId: String
  18. def getCrlPaths: Buffer[String]
  19. def getCrlValues: Buffer[Buffer]
  20. def getEnabledCipherSuites: Set[String]
  21. def getEnabledSaslMechanisms: Set[String]
  22. def getEnabledSecureTransportProtocols: Set[String]
  23. def getHeartbeat: Int
  24. def getHostnameVerificationAlgorithm: String
  25. def getIdleTimeout: Int
  26. def getJdkSslEngineOptions: JdkSSLEngineOptions
  27. def getKeyStoreOptions: JksOptions
  28. def getLocalAddress: String
  29. def getLogActivity: Boolean
  30. def getMetricsName: String
  31. def getOpenSslEngineOptions: OpenSSLEngineOptions
  32. def getPemKeyCertOptions: PemKeyCertOptions
  33. def getPemTrustOptions: PemTrustOptions
  34. def getPfxKeyCertOptions: PfxOptions
  35. def getPfxTrustOptions: PfxOptions
  36. def getProxyOptions: ProxyOptions
  37. def getReceiveBufferSize: Int
  38. def getReconnectAttempts: Int
  39. def getReconnectInterval: Long
  40. def getSendBufferSize: Int
  41. def getSoLinger: Int
  42. def getTrafficClass: Int
  43. def getTrustStoreOptions: JksOptions
  44. def getVhost: String
  45. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  46. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  47. def isReplyHandlingSupport: Boolean
  48. def isReuseAddress: Boolean
  49. def isSsl: Boolean
  50. def isTcpKeepAlive: Boolean
  51. def isTcpNoDelay: Boolean
  52. def isTrustAll: Boolean
  53. def isUseAlpn: Boolean
  54. def isUsePooledBuffers: Boolean
  55. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  56. final def notify(): Unit
    Definition Classes
    AnyRef
  57. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  58. def setConnectTimeout(value: Int): AmqpBridgeOptions
  59. def setContainerId(value: String): AmqpBridgeOptions

    Sets the value to use as the container-id field in the AMQP Open frame.

    Sets the value to use as the container-id field in the AMQP Open frame. Some servers and clients use this for the concept of a 'Client ID'. Defaults to null, which indicates a value will be generated by the bridge when the underlying connection is made.

  60. def setHeartbeat(value: Int): AmqpBridgeOptions
  61. def setHostnameVerificationAlgorithm(value: String): AmqpBridgeOptions
  62. def setIdleTimeout(value: Int): AmqpBridgeOptions
  63. def setJdkSslEngineOptions(value: JdkSSLEngineOptions): AmqpBridgeOptions
  64. def setKeyStoreOptions(value: JksOptions): AmqpBridgeOptions
  65. def setLocalAddress(value: String): AmqpBridgeOptions
  66. def setLogActivity(value: Boolean): AmqpBridgeOptions
  67. def setMetricsName(value: String): AmqpBridgeOptions
  68. def setOpenSslEngineOptions(value: OpenSSLEngineOptions): AmqpBridgeOptions
  69. def setPemKeyCertOptions(value: PemKeyCertOptions): AmqpBridgeOptions
  70. def setPemTrustOptions(value: PemTrustOptions): AmqpBridgeOptions
  71. def setPfxKeyCertOptions(value: PfxOptions): AmqpBridgeOptions
  72. def setPfxTrustOptions(value: PfxOptions): AmqpBridgeOptions
  73. def setProxyOptions(value: ProxyOptions): AmqpBridgeOptions
  74. def setReceiveBufferSize(value: Int): AmqpBridgeOptions
  75. def setReconnectAttempts(value: Int): AmqpBridgeOptions
  76. def setReconnectInterval(value: Long): AmqpBridgeOptions
  77. def setReplyHandlingSupport(value: Boolean): AmqpBridgeOptions

    Sets whether the bridge should try to enable support for sending messages with a reply handler set, and replying to messages using the message reply methods.

    Sets whether the bridge should try to enable support for sending messages with a reply handler set, and replying to messages using the message reply methods. Defaults to true. If the server does not advertise support for 'anonymous sender' links then the bridge won't support reply handling regardless of this setting.

  78. def setReuseAddress(value: Boolean): AmqpBridgeOptions
  79. def setSendBufferSize(value: Int): AmqpBridgeOptions
  80. def setSoLinger(value: Int): AmqpBridgeOptions
  81. def setSsl(value: Boolean): AmqpBridgeOptions
  82. def setTcpKeepAlive(value: Boolean): AmqpBridgeOptions
  83. def setTcpNoDelay(value: Boolean): AmqpBridgeOptions
  84. def setTrafficClass(value: Int): AmqpBridgeOptions
  85. def setTrustAll(value: Boolean): AmqpBridgeOptions
  86. def setTrustStoreOptions(value: JksOptions): AmqpBridgeOptions
  87. def setUseAlpn(value: Boolean): AmqpBridgeOptions
  88. def setUsePooledBuffers(value: Boolean): AmqpBridgeOptions
  89. def setVhost(value: String): AmqpBridgeOptions

    Sets the value to use as the hostname field in the AMQP Open frame.

    Sets the value to use as the hostname field in the AMQP Open frame. Defaults to null, which indicates the hostname value given when starting the bridge will be used to populate the hostname field.

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

Inherited from AnyRef

Inherited from Any

Ungrouped