Package com.rabbitmq.client.amqp
Interface ConnectionBuilder
- All Superinterfaces:
ConnectionSettings<ConnectionBuilder>
Builder for
Connection
instances.-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Configuration for recovery.Nested classes/interfaces inherited from interface com.rabbitmq.client.amqp.ConnectionSettings
ConnectionSettings.Affinity<T>, ConnectionSettings.AffinityContext, ConnectionSettings.AffinityStrategy, ConnectionSettings.TlsSettings<T>
-
Field Summary
Fields inherited from interface com.rabbitmq.client.amqp.ConnectionSettings
SASL_MECHANISM_ANONYMOUS, SASL_MECHANISM_EXTERNAL, SASL_MECHANISM_PLAIN
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Create the connection instance.dispatchingExecutor
(Executor executor) Set the executor to use for incoming message delivery.listeners
(Resource.StateListener... listeners) AddResource.StateListener
s to the connection.Set the name of the connection.recovery()
Configuration for recovery.Methods inherited from interface com.rabbitmq.client.amqp.ConnectionSettings
addressSelector, affinity, credentialsProvider, host, idleTimeout, oauth2, password, port, saslMechanism, tls, uri, uris, username, virtualHost
-
Method Details
-
name
Set the name of the connection.The name of the connection will be displayed in the management UI.
- Parameters:
name
- client-provided connection name- Returns:
- this builder instance
-
recovery
ConnectionBuilder.RecoveryConfiguration recovery()Configuration for recovery.- Returns:
- recovery configuration
-
listeners
AddResource.StateListener
s to the connection.- Parameters:
listeners
- listeners- Returns:
- this builder instance
-
dispatchingExecutor
Set the executor to use for incoming message delivery.The executor is shared between the connection consumers.
By default, an
ExecutorService
withRuntime.availableProcessors()
thread(s) is created for the connection.It is the developer's responsibility to shut down the executor when it is no longer needed.
- Parameters:
executor
- executor for incoming message delivery- Returns:
- this builder instance
- See Also:
-
build
Connection build()Create the connection instance.- Returns:
- the configured connection
-