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
static class
SocketConfigurators.AbstractSocketConfigurator
Methods in com.rabbitmq.client that return SocketConfigurator Modifier and Type Method Description SocketConfigurator
SocketConfigurators.Builder. build()
Return the configuredSocketConfigurator
.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.SocketConfigurators.AbstractSocketConfigurator
SocketConfigurators.AbstractSocketConfigurator. 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, ConnectionPostProcessor connectionPostProcessor)
SocketFrameHandlerFactory(int connectionTimeout, SocketFactory factory, SocketConfigurator configurator, boolean ssl)
SocketFrameHandlerFactory(int connectionTimeout, SocketFactory factory, SocketConfigurator configurator, boolean ssl, ExecutorService shutdownExecutor)
SocketFrameHandlerFactory(int connectionTimeout, SocketFactory factory, SocketConfigurator configurator, boolean ssl, ExecutorService shutdownExecutor, ConnectionPostProcessor connectionPostProcessor)
-