ProtonClientOptions

Options for configuring {@link hunt.amqp.ProtonClient} connect operations.

class ProtonClientOptions : NetClientOptions {}

Constructors

this
this()
Undocumented in source.
this
this(ProtonClientOptions other)

Copy constructor

this
this(JSONValue json)

Create options from JSON

Members

Functions

addEnabledSaslMechanism
ProtonClientOptions addEnabledSaslMechanism(string saslMechanism)

Adds a mechanism name that the client may use during SASL negotiation.

getEnabledSaslMechanisms
Set!string getEnabledSaslMechanisms()

Get the mechanisms the client should be restricted to use.

getHeartbeat
int getHeartbeat()

Return the heartbeat (in milliseconds) as maximum delay between sending frames for the remote peers.

getMaxFrameSize
int getMaxFrameSize()

Gets the maximum frame size for the connection. <p> If this property is not set explicitly, a reasonable default value is used.

getSniServerName
string getSniServerName()

Get the hostname override for TLS SNI Server Name set by {@link #setSniServerName(String)}.

getVirtualHost
string getVirtualHost()

Get the virtual host name override for the connection AMQP Open frame and TLS SNI server name (if TLS is in use) set by {@link #setVirtualHost(String)}.

opEquals
bool opEquals(Object obj)
Undocumented in source. Be warned that the author may not have intended to support it.
setConnectTimeout
ProtonClientOptions setConnectTimeout(Duration connectTimeout)
Undocumented in source. Be warned that the author may not have intended to support it.
setHeartbeat
ProtonClientOptions setHeartbeat(int heartbeat)

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

setHostnameVerificationAlgorithm
ProtonClientOptions setHostnameVerificationAlgorithm(string hostnameVerificationAlgorithm)
Undocumented in source. Be warned that the author may not have intended to support it.
setIdleTimeout
ProtonClientOptions setIdleTimeout(Duration idleTimeout)
Undocumented in source. Be warned that the author may not have intended to support it.
setLocalAddress
ProtonClientOptions setLocalAddress(string localAddress)
Undocumented in source. Be warned that the author may not have intended to support it.
setLogActivity
ProtonClientOptions setLogActivity(bool logEnabled)
Undocumented in source. Be warned that the author may not have intended to support it.
setMaxFrameSize
ProtonClientOptions setMaxFrameSize(int maxFrameSize)

Sets the maximum frame size for the connection. <p> If this property is not set explicitly, a reasonable default value is used. <p> Setting this property to a negative value will result in no maximum frame size being announced at all.

setMetricsName
ProtonClientOptions setMetricsName(string metricsName)
Undocumented in source. Be warned that the author may not have intended to support it.
setOpenSslEngineOptions
ProtonClientOptions setOpenSslEngineOptions(OpenSSLEngineOptions sslEngineOptions)
Undocumented in source. Be warned that the author may not have intended to support it.
setProxyOptions
ProtonClientOptions setProxyOptions(ProxyOptions proxyOptions)
Undocumented in source. Be warned that the author may not have intended to support it.
setReceiveBufferSize
ProtonClientOptions setReceiveBufferSize(int receiveBufferSize)
Undocumented in source. Be warned that the author may not have intended to support it.
setReconnectAttempts
ProtonClientOptions setReconnectAttempts(int attempts)
Undocumented in source. Be warned that the author may not have intended to support it.
setReconnectInterval
ProtonClientOptions setReconnectInterval(Duration interval)
Undocumented in source. Be warned that the author may not have intended to support it.
setReuseAddress
ProtonClientOptions setReuseAddress(bool reuseAddress)
Undocumented in source. Be warned that the author may not have intended to support it.
setReusePort
ProtonClientOptions setReusePort(bool reusePort)
Undocumented in source. Be warned that the author may not have intended to support it.
setSendBufferSize
ProtonClientOptions setSendBufferSize(int sendBufferSize)
Undocumented in source. Be warned that the author may not have intended to support it.
setSniServerName
ProtonClientOptions setSniServerName(string sniServerName)

Explicitly override the hostname to use for the TLS SNI server name.

setSoLinger
ProtonClientOptions setSoLinger(int soLinger)
Undocumented in source. Be warned that the author may not have intended to support it.
setSsl
ProtonClientOptions setSsl(bool ssl)
Undocumented in source. Be warned that the author may not have intended to support it.
setSslHandshakeTimeout
ProtonClientOptions setSslHandshakeTimeout(Duration sslHandshakeTimeout)
Undocumented in source. Be warned that the author may not have intended to support it.
setTcpCork
ProtonClientOptions setTcpCork(bool tcpCork)
Undocumented in source. Be warned that the author may not have intended to support it.
setTcpFastOpen
ProtonClientOptions setTcpFastOpen(bool tcpFastOpen)
Undocumented in source. Be warned that the author may not have intended to support it.
setTcpKeepAlive
ProtonClientOptions setTcpKeepAlive(bool tcpKeepAlive)
Undocumented in source. Be warned that the author may not have intended to support it.
setTcpNoDelay
ProtonClientOptions setTcpNoDelay(bool tcpNoDelay)
Undocumented in source. Be warned that the author may not have intended to support it.
setTcpQuickAck
ProtonClientOptions setTcpQuickAck(bool tcpQuickAck)
Undocumented in source. Be warned that the author may not have intended to support it.
setTrafficClass
ProtonClientOptions setTrafficClass(int trafficClass)
Undocumented in source. Be warned that the author may not have intended to support it.
setTrustAll
ProtonClientOptions setTrustAll(bool trustAll)
Undocumented in source. Be warned that the author may not have intended to support it.
setUseAlpn
ProtonClientOptions setUseAlpn(bool useAlpn)
Undocumented in source. Be warned that the author may not have intended to support it.
setVirtualHost
ProtonClientOptions setVirtualHost(string virtualHost)

Override the hostname value used in the connection AMQP Open frame and TLS SNI server name (if TLS is in use). By default, the hostname specified in {@link ProtonClient#connect} will be used for both, with SNI performed implicit where a FQDN was specified.

toHash
size_t toHash()
Undocumented in source. Be warned that the author may not have intended to support it.
toJson
JSONValue toJson()

Convert to JSON

Meta