Uses of Interface
com.rabbitmq.client.SocketChannelConfigurator
Packages that use SocketChannelConfigurator
Package
Description
The client API proper: classes and interfaces representing the AMQP
connections, channels, and wire-protocol framing descriptors.
NIO network connector.
-
Uses of SocketChannelConfigurator in com.rabbitmq.client
Classes in com.rabbitmq.client that implement SocketChannelConfiguratorFields in com.rabbitmq.client declared as SocketChannelConfiguratorModifier and TypeFieldDescriptionprivate SocketChannelConfigurator
SocketChannelConfigurators.Builder.configurator
static final SocketChannelConfigurator
SocketChannelConfigurators.DEFAULT
DefaultSocketChannelConfigurator
that disables Nagle's algorithm.static final SocketChannelConfigurator
SocketChannelConfigurators.DISABLE_NAGLE_ALGORITHM
Disable Nagle's algorithm.Methods in com.rabbitmq.client that return SocketChannelConfiguratorModifier and TypeMethodDescriptiondefault SocketChannelConfigurator
SocketChannelConfigurator.andThen
(SocketChannelConfigurator after) Returns a composed configurator that performs, in sequence, this operation followed by theafter
operation.SocketChannelConfigurators.Builder.build()
Return the configuredSocketConfigurator
.static SocketChannelConfigurator
SocketChannelConfigurators.defaultConfigurator()
The defaultSocketChannelConfigurator
that disables Nagle's algorithm.static SocketChannelConfigurator
SocketChannelConfigurators.disableNagleAlgorithm()
SocketChannelConfigurator
that disables Nagle's algorithm.Methods in com.rabbitmq.client with parameters of type SocketChannelConfiguratorModifier and TypeMethodDescriptionSocketChannelConfigurators.Builder.add
(SocketChannelConfigurator extraConfiguration) Add an extra configuration step.default SocketChannelConfigurator
SocketChannelConfigurator.andThen
(SocketChannelConfigurator after) Returns a composed configurator that performs, in sequence, this operation followed by theafter
operation. -
Uses of SocketChannelConfigurator in com.rabbitmq.client.impl.nio
Fields in com.rabbitmq.client.impl.nio declared as SocketChannelConfiguratorModifier and TypeFieldDescriptionprivate SocketChannelConfigurator
NioParams.socketChannelConfigurator
the hook to configure the socket channel before it's openMethods in com.rabbitmq.client.impl.nio that return SocketChannelConfiguratorMethods in com.rabbitmq.client.impl.nio with parameters of type SocketChannelConfiguratorModifier and TypeMethodDescriptionvoid
NioParams.setSocketChannelConfigurator
(SocketChannelConfigurator configurator) Set theSocketChannel
configurator.