Uses of Interface
com.rabbitmq.client.SocketConfigurator
-
Packages that use SocketConfigurator Package Description com.rabbitmq.client The client API proper: classes and interfaces representing the AMQP connections, channels, and wire-protocol framing descriptors.com.rabbitmq.client.impl Implementations of interfaces specified in the client API, and their supporting classes. -
-
Uses of SocketConfigurator in com.rabbitmq.client
Classes in com.rabbitmq.client that implement SocketConfigurator Modifier and Type Class Description class
DefaultSocketConfigurator
Fields in com.rabbitmq.client declared as SocketConfigurator Modifier and Type Field Description private SocketConfigurator
SocketConfigurators.Builder. configurator
static SocketConfigurator
SocketConfigurators. DEFAULT
DefaultSocketConfigurator
that disables Nagle's algorithm.static SocketConfigurator
SocketConfigurators. DISABLE_NAGLE_ALGORITHM
Disable Nagle's algorithm.static SocketConfigurator
SocketConfigurators. ENABLE_HOSTNAME_VERIFICATION
Enable server hostname validation for TLS connections.private SocketConfigurator
ConnectionFactory. socketConf
Methods in com.rabbitmq.client that return SocketConfigurator Modifier and Type Method Description default SocketConfigurator
SocketConfigurator. andThen(SocketConfigurator after)
Returns a composed configurator that performs, in sequence, this operation followed by theafter
operation.SocketConfigurator
SocketConfigurators.Builder. build()
Return the configuredSocketConfigurator
.static SocketConfigurator
SocketConfigurators. defaultConfigurator()
The defaultSocketConfigurator
that disables Nagle's algorithm.static SocketConfigurator
SocketConfigurators. disableNagleAlgorithm()
SocketConfigurator
that disables Nagle's algorithm.static SocketConfigurator
SocketConfigurators. enableHostnameVerification()
SocketConfigurator
that enable server hostname verification for TLS connections.SocketConfigurator
ConnectionFactory. getSocketConfigurator()
Get the socket configurator.Methods in com.rabbitmq.client with parameters of type SocketConfigurator Modifier and Type Method Description SocketConfigurators.Builder
SocketConfigurators.Builder. add(SocketConfigurator extraConfiguration)
Add an extra configuration step.default SocketConfigurator
SocketConfigurator. andThen(SocketConfigurator after)
Returns a composed configurator that performs, in sequence, this operation followed by theafter
operation.void
ConnectionFactory. setSocketConfigurator(SocketConfigurator socketConfigurator)
Set the socket configurator. -
Uses of SocketConfigurator in com.rabbitmq.client.impl
Fields in com.rabbitmq.client.impl declared as SocketConfigurator Modifier and Type Field Description protected SocketConfigurator
AbstractFrameHandlerFactory. configurator
Constructors in com.rabbitmq.client.impl with parameters of type SocketConfigurator Constructor Description AbstractFrameHandlerFactory(int connectionTimeout, SocketConfigurator configurator, boolean ssl, int maxInboundMessageBodySize)
SocketFrameHandlerFactory(int connectionTimeout, javax.net.SocketFactory socketFactory, SocketConfigurator configurator, boolean ssl)
SocketFrameHandlerFactory(int connectionTimeout, javax.net.SocketFactory socketFactory, SocketConfigurator configurator, boolean ssl, java.util.concurrent.ExecutorService shutdownExecutor)
SocketFrameHandlerFactory(int connectionTimeout, javax.net.SocketFactory socketFactory, SocketConfigurator configurator, boolean ssl, java.util.concurrent.ExecutorService shutdownExecutor, SslContextFactory sslContextFactory, int maxInboundMessageBodySize)
-