Uses of Interface
com.rabbitmq.client.SocketChannelConfigurator
-
Packages that use SocketChannelConfigurator 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.nio NIO network connector. -
-
Uses of SocketChannelConfigurator in com.rabbitmq.client
Classes in com.rabbitmq.client that implement SocketChannelConfigurator Modifier and Type Class Description class
DefaultSocketChannelConfigurator
Fields in com.rabbitmq.client declared as SocketChannelConfigurator Modifier and Type Field Description private SocketChannelConfigurator
SocketChannelConfigurators.Builder. configurator
static SocketChannelConfigurator
SocketChannelConfigurators. DEFAULT
DefaultSocketChannelConfigurator
that disables Nagle's algorithm.static SocketChannelConfigurator
SocketChannelConfigurators. DISABLE_NAGLE_ALGORITHM
Disable Nagle's algorithm.Methods in com.rabbitmq.client that return SocketChannelConfigurator Modifier and Type Method Description default SocketChannelConfigurator
SocketChannelConfigurator. andThen(SocketChannelConfigurator after)
Returns a composed configurator that performs, in sequence, this operation followed by theafter
operation.SocketChannelConfigurator
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 SocketChannelConfigurator Modifier and Type Method Description SocketChannelConfigurators.Builder
SocketChannelConfigurators.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 SocketChannelConfigurator Modifier and Type Field Description private SocketChannelConfigurator
NioParams. socketChannelConfigurator
the hook to configure the socket channel before it's openMethods in com.rabbitmq.client.impl.nio that return SocketChannelConfigurator Modifier and Type Method Description SocketChannelConfigurator
NioParams. getSocketChannelConfigurator()
Methods in com.rabbitmq.client.impl.nio with parameters of type SocketChannelConfigurator Modifier and Type Method Description void
NioParams. setSocketChannelConfigurator(SocketChannelConfigurator configurator)
Set theSocketChannel
configurator.
-