Interface EventBusConfiguration
public interface EventBusConfiguration
-
Method Summary
Modifier and TypeMethodDescriptionThe accept backlog.The client authentication.The connect timeout.The idle timeout in milliseconds.The key configuration for the JKS format.The key configuration for the PEM format.The key configuration for the PFX format.The receive buffer size.intThe number of reconnection attempts.The reconnection interval in milliseconds.booleanWhether to reuse the address.booleanWhether to reuse the port.The send buffer size.soLinger()The so linger.booleanssl()Enables or Disabled SSL.booleanWhether to keep the TCP connection opened (keep-alive).booleanConfigure the TCP no delay.Configure the traffic class.booleantrustAll()Enables or disables the trust all parameter.The trust key configuration for the JKS format.The trust key configuration for the PEM format.The trust key configuration for the PFX format.
-
Method Details
-
keyCertificatePem
PemKeyCertConfiguration keyCertificatePem()The key configuration for the PEM format. -
keyCertificateJks
JksConfiguration keyCertificateJks()The key configuration for the JKS format. -
keyCertificatePfx
PfxConfiguration keyCertificatePfx()The key configuration for the PFX format. -
trustCertificatePem
PemTrustCertConfiguration trustCertificatePem()The trust key configuration for the PEM format. -
trustCertificateJks
JksConfiguration trustCertificateJks()The trust key configuration for the JKS format. -
trustCertificatePfx
PfxConfiguration trustCertificatePfx()The trust key configuration for the PFX format. -
acceptBacklog
OptionalInt acceptBacklog()The accept backlog. -
clientAuth
The client authentication. -
connectTimeout
The connect timeout. -
idleTimeout
The idle timeout in milliseconds. -
receiveBufferSize
OptionalInt receiveBufferSize()The receive buffer size. -
reconnectAttempts
@WithDefault("0") int reconnectAttempts()The number of reconnection attempts. -
reconnectInterval
The reconnection interval in milliseconds. -
reuseAddress
@WithDefault("true") boolean reuseAddress()Whether to reuse the address. -
reusePort
@WithDefault("false") boolean reusePort()Whether to reuse the port. -
sendBufferSize
OptionalInt sendBufferSize()The send buffer size. -
soLinger
OptionalInt soLinger()The so linger. -
ssl
@WithDefault("false") boolean ssl()Enables or Disabled SSL. -
tcpKeepAlive
@WithDefault("false") boolean tcpKeepAlive()Whether to keep the TCP connection opened (keep-alive). -
tcpNoDelay
@WithDefault("true") boolean tcpNoDelay()Configure the TCP no delay. -
trafficClass
OptionalInt trafficClass()Configure the traffic class. -
trustAll
@WithDefault("false") boolean trustAll()Enables or disables the trust all parameter.
-