vertx / io.vertx.kotlin.amqp / amqpClientOptionsOf

amqpClientOptionsOf

fun amqpClientOptionsOf(connectTimeout: Int? = null, containerId: String? = null, crlPaths: Iterable<String>? = null, crlValues: Iterable<Buffer>? = null, enabledCipherSuites: Iterable<String>? = null, enabledSaslMechanisms: Iterable<String>? = null, enabledSecureTransportProtocols: Iterable<String>? = null, heartbeat: Int? = null, host: String? = null, hostnameVerificationAlgorithm: String? = null, idleTimeout: Int? = null, idleTimeoutUnit: TimeUnit? = null, jdkSslEngineOptions: JdkSSLEngineOptions? = null, keyStoreOptions: JksOptions? = null, localAddress: String? = null, logActivity: Boolean? = null, maxFrameSize: Int? = null, metricsName: String? = null, openSslEngineOptions: OpenSSLEngineOptions? = null, password: String? = null, pemKeyCertOptions: PemKeyCertOptions? = null, pemTrustOptions: PemTrustOptions? = null, pfxKeyCertOptions: PfxOptions? = null, pfxTrustOptions: PfxOptions? = null, port: Int? = null, proxyOptions: ProxyOptions? = null, receiveBufferSize: Int? = null, reconnectAttempts: Int? = null, reconnectInterval: Long? = null, reuseAddress: Boolean? = null, reusePort: Boolean? = null, sendBufferSize: Int? = null, sniServerName: String? = null, soLinger: Int? = null, ssl: Boolean? = null, sslHandshakeTimeout: Long? = null, sslHandshakeTimeoutUnit: TimeUnit? = null, tcpCork: Boolean? = null, tcpFastOpen: Boolean? = null, tcpKeepAlive: Boolean? = null, tcpNoDelay: Boolean? = null, tcpQuickAck: Boolean? = null, trafficClass: Int? = null, trustAll: Boolean? = null, trustStoreOptions: JksOptions? = null, useAlpn: Boolean? = null, usePooledBuffers: Boolean? = null, username: String? = null, virtualHost: String? = null): AmqpClientOptions

A function providing a DSL for building io.vertx.amqp.AmqpClientOptions objects.

Configures the AMQP Client. You can also configure the underlying Proton instance. Refer to for details.

Parameters

connectTimeout -

containerId - Sets the container id.

crlPaths -

crlValues -

enabledCipherSuites -

enabledSaslMechanisms -

enabledSecureTransportProtocols -

heartbeat -

host - Sets the host.

hostnameVerificationAlgorithm -

idleTimeout -

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

jdkSslEngineOptions -

keyStoreOptions -

localAddress -

logActivity - Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

maxFrameSize -

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

openSslEngineOptions -

password - Sets the password.

pemKeyCertOptions -

pemTrustOptions -

pfxKeyCertOptions -

pfxTrustOptions -

port - Sets the port.

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

receiveBufferSize -

reconnectAttempts -

reconnectInterval -

reuseAddress -

reusePort -

sendBufferSize -

sniServerName -

soLinger -

ssl -

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

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

tcpCork -

tcpFastOpen -

tcpKeepAlive -

tcpNoDelay -

tcpQuickAck -

trafficClass -

trustAll -

trustStoreOptions -

useAlpn - Set the ALPN usage.

usePooledBuffers -

username - Sets the username.

virtualHost -