Interface RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
-
- All Superinterfaces:
ComponentBuilder<org.apache.camel.component.rabbitmq.RabbitMQComponent>
- All Known Implementing Classes:
RabbitmqComponentBuilderFactory.RabbitmqComponentBuilderImpl
- Enclosing interface:
- RabbitmqComponentBuilderFactory
public static interface RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder extends ComponentBuilder<org.apache.camel.component.rabbitmq.RabbitMQComponent>
Builder for the RabbitMQ component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
additionalHeaders(Map<String,Object> additionalHeaders)
Map of additional headers.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
additionalProperties(Map<String,Object> additionalProperties)
Map of additional properties.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
addresses(String addresses)
If this option is set, camel-rabbitmq will try to create connection based on the setting of option addresses.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
allowNullHeaders(boolean allowNullHeaders)
Allow pass null values to header.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
args(Map<String,Object> args)
Specify arguments for configuring the different RabbitMQ concepts, a different prefix is required for each: Exchange: arg.exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
autoAck(boolean autoAck)
If messages should be auto acknowledged.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
autoDelete(boolean autoDelete)
If it is true, the exchange will be deleted when it is no longer in use.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
autoDetectConnectionFactory(boolean autoDetectConnectionFactory)
Whether to auto-detect looking up RabbitMQ connection factory from the registry.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
automaticRecoveryEnabled(Boolean automaticRecoveryEnabled)
Enables connection automatic recovery (uses connection implementation that performs automatic recovery when connection shutdown is not initiated by the application).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
autowiredEnabled(boolean autowiredEnabled)
Whether autowiring is enabled.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
channelPoolMaxSize(int channelPoolMaxSize)
Get maximum number of opened channel in pool.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
channelPoolMaxWait(long channelPoolMaxWait)
Set the maximum number of milliseconds to wait for a channel from the pool.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
clientProperties(Map<String,Object> clientProperties)
Connection client properties (client info used in negotiating with the server).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
connectionFactory(com.rabbitmq.client.ConnectionFactory connectionFactory)
To use a custom RabbitMQ connection factory.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
connectionFactoryExceptionHandler(com.rabbitmq.client.ExceptionHandler connectionFactoryExceptionHandler)
Custom rabbitmq ExceptionHandler for ConnectionFactory.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
connectionTimeout(int connectionTimeout)
Connection timeout.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
deadLetterExchange(String deadLetterExchange)
The name of the dead letter exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
deadLetterExchangeType(String deadLetterExchangeType)
The type of the dead letter exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
deadLetterQueue(String deadLetterQueue)
The name of the dead letter queue.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
deadLetterRoutingKey(String deadLetterRoutingKey)
The routing key for the dead letter exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
declare(boolean declare)
If the option is true, camel declare the exchange and queue name and bind them together.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
durable(boolean durable)
If we are declaring a durable exchange (the exchange will survive a server restart).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
exclusive(boolean exclusive)
Exclusive queues may only be accessed by the current connection, and are deleted when that connection closes.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
exclusiveConsumer(boolean exclusiveConsumer)
Request exclusive access to the queue (meaning only this consumer can access the queue).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
guaranteedDeliveries(boolean guaranteedDeliveries)
When true, an exception will be thrown when the message cannot be delivered (basic.return) and the message is marked as mandatory.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
hostname(String hostname)
The hostname of the running RabbitMQ instance or cluster.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
immediate(boolean immediate)
This flag tells the server how to react if the message cannot be routed to a queue consumer immediately.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
mandatory(boolean mandatory)
This flag tells the server how to react if the message cannot be routed to a queue.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
networkRecoveryInterval(Integer networkRecoveryInterval)
Network recovery interval in milliseconds (interval used when recovering from network failure).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
passive(boolean passive)
Passive queues depend on the queue already to be available at RabbitMQ.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
password(String password)
Password for authenticated access.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
portNumber(int portNumber)
Port number for the host with the running rabbitmq instance or cluster.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
prefetchCount(int prefetchCount)
The maximum number of messages that the server will deliver, 0 if unlimited.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
prefetchEnabled(boolean prefetchEnabled)
Enables the quality of service on the RabbitMQConsumer side.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
prefetchGlobal(boolean prefetchGlobal)
If the settings should be applied to the entire channel rather than each consumer You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
prefetchSize(int prefetchSize)
The maximum amount of content (measured in octets) that the server will deliver, 0 if unlimited.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
publisherAcknowledgements(boolean publisherAcknowledgements)
When true, the message will be published with publisher acknowledgements turned on.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
publisherAcknowledgementsTimeout(long publisherAcknowledgementsTimeout)
The amount of time in milliseconds to wait for a basic.ack response from RabbitMQ server.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
requestedChannelMax(int requestedChannelMax)
Connection requested channel max (max number of channels offered).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
requestedFrameMax(int requestedFrameMax)
Connection requested frame max (max size of frame offered).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
requestedHeartbeat(int requestedHeartbeat)
Connection requested heartbeat (heart-beat in seconds offered).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
requestTimeout(long requestTimeout)
Set timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
requestTimeoutCheckerInterval(long requestTimeoutCheckerInterval)
Set requestTimeoutCheckerInterval for inOut exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
skipExchangeDeclare(boolean skipExchangeDeclare)
This can be used if we need to declare the queue but not the exchange.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
skipQueueBind(boolean skipQueueBind)
If true the queue will not be bound to the exchange after declaring it.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
skipQueueDeclare(boolean skipQueueDeclare)
If true the producer will not declare and bind a queue.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
sslProtocol(String sslProtocol)
Enables SSL on connection, accepted value are true, TLS and 'SSLv3.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
threadPoolSize(int threadPoolSize)
The consumer uses a Thread Pool Executor with a fixed number of threads.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
topologyRecoveryEnabled(Boolean topologyRecoveryEnabled)
Enables connection topology recovery (should topology recovery be performed).default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
transferException(boolean transferException)
When true and an inOut Exchange failed on the consumer side send the caused Exception back in the response.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
trustManager(TrustManager trustManager)
Configure SSL trust manager, SSL should be enabled for this option to be effective.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
username(String username)
Username in case of authenticated access.default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder
vhost(String vhost)
The vhost for the channel.-
Methods inherited from interface org.apache.camel.builder.component.ComponentBuilder
build, build, doSetProperty, register
-
-
-
-
Method Detail
-
addresses
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder addresses(String addresses)
If this option is set, camel-rabbitmq will try to create connection based on the setting of option addresses. The addresses value is a string which looks like server1:12345, server2:12345. The option is a:java.lang.String
type. Group: common
-
autoDelete
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder autoDelete(boolean autoDelete)
If it is true, the exchange will be deleted when it is no longer in use. The option is a:boolean
type. Default: true Group: common
-
connectionFactory
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder connectionFactory(com.rabbitmq.client.ConnectionFactory connectionFactory)
To use a custom RabbitMQ connection factory. When this option is set, all connection options (connectionTimeout, requestedChannelMax...) set on URI are not used. The option is a:com.rabbitmq.client.ConnectionFactory
type. Group: common
-
deadLetterExchange
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder deadLetterExchange(String deadLetterExchange)
The name of the dead letter exchange. The option is a:java.lang.String
type. Group: common
-
deadLetterExchangeType
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder deadLetterExchangeType(String deadLetterExchangeType)
The type of the dead letter exchange. The option is a:java.lang.String
type. Default: direct Group: common
-
deadLetterQueue
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder deadLetterQueue(String deadLetterQueue)
The name of the dead letter queue. The option is a:java.lang.String
type. Group: common
-
deadLetterRoutingKey
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder deadLetterRoutingKey(String deadLetterRoutingKey)
The routing key for the dead letter exchange. The option is a:java.lang.String
type. Group: common
-
declare
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder declare(boolean declare)
If the option is true, camel declare the exchange and queue name and bind them together. If the option is false, camel won't declare the exchange and queue name on the server. The option is a:boolean
type. Default: true Group: common
-
durable
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder durable(boolean durable)
If we are declaring a durable exchange (the exchange will survive a server restart). The option is a:boolean
type. Default: true Group: common
-
exclusive
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder exclusive(boolean exclusive)
Exclusive queues may only be accessed by the current connection, and are deleted when that connection closes. The option is a:boolean
type. Default: false Group: common
-
hostname
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder hostname(String hostname)
The hostname of the running RabbitMQ instance or cluster. The option is a:java.lang.String
type. Group: common
-
passive
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder passive(boolean passive)
Passive queues depend on the queue already to be available at RabbitMQ. The option is a:boolean
type. Default: false Group: common
-
portNumber
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder portNumber(int portNumber)
Port number for the host with the running rabbitmq instance or cluster. The option is a:int
type. Default: 5672 Group: common
-
skipExchangeDeclare
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder skipExchangeDeclare(boolean skipExchangeDeclare)
This can be used if we need to declare the queue but not the exchange. The option is a:boolean
type. Default: false Group: common
-
skipQueueBind
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder skipQueueBind(boolean skipQueueBind)
If true the queue will not be bound to the exchange after declaring it. The option is a:boolean
type. Default: false Group: common
-
skipQueueDeclare
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder skipQueueDeclare(boolean skipQueueDeclare)
If true the producer will not declare and bind a queue. This can be used for directing messages via an existing routing key. The option is a:boolean
type. Default: false Group: common
-
vhost
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder vhost(String vhost)
The vhost for the channel. The option is a:java.lang.String
type. Default: / Group: common
-
autoAck
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder autoAck(boolean autoAck)
If messages should be auto acknowledged. The option is a:boolean
type. Default: true Group: consumer
-
bridgeErrorHandler
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a:boolean
type. Default: false Group: consumer
-
exclusiveConsumer
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder exclusiveConsumer(boolean exclusiveConsumer)
Request exclusive access to the queue (meaning only this consumer can access the queue). This is useful when you want a long-lived shared queue to be temporarily accessible by just one consumer. The option is a:boolean
type. Default: false Group: consumer
-
prefetchCount
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder prefetchCount(int prefetchCount)
The maximum number of messages that the server will deliver, 0 if unlimited. You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time. The option is a:int
type. Group: consumer
-
prefetchEnabled
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder prefetchEnabled(boolean prefetchEnabled)
Enables the quality of service on the RabbitMQConsumer side. You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time. The option is a:boolean
type. Default: false Group: consumer
-
prefetchGlobal
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder prefetchGlobal(boolean prefetchGlobal)
If the settings should be applied to the entire channel rather than each consumer You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time. The option is a:boolean
type. Default: false Group: consumer
-
prefetchSize
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder prefetchSize(int prefetchSize)
The maximum amount of content (measured in octets) that the server will deliver, 0 if unlimited. You need to specify the option of prefetchSize, prefetchCount, prefetchGlobal at the same time. The option is a:int
type. Group: consumer
-
threadPoolSize
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder threadPoolSize(int threadPoolSize)
The consumer uses a Thread Pool Executor with a fixed number of threads. This setting allows you to set that number of threads. The option is a:int
type. Default: 10 Group: consumer (advanced)
-
additionalHeaders
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder additionalHeaders(Map<String,Object> additionalHeaders)
Map of additional headers. These headers will be set only when the 'allowCustomHeaders' is set to true. The option is a:java.util.Map
type. Group: producer
-
additionalProperties
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder additionalProperties(Map<String,Object> additionalProperties)
Map of additional properties. These are standard RabbitMQ properties as defined in com.rabbitmq.client.AMQP.BasicProperties The map keys should be from org.apache.camel.component.rabbitmq.RabbitMQConstants. Any other keys will be ignored. When the message already contains these headers they will be given precedence over these properties. The option is a:java.util.Map
type. Group: producer
-
allowNullHeaders
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder allowNullHeaders(boolean allowNullHeaders)
Allow pass null values to header. The option is a:boolean
type. Default: false Group: producer
-
channelPoolMaxSize
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder channelPoolMaxSize(int channelPoolMaxSize)
Get maximum number of opened channel in pool. The option is a:int
type. Default: 10 Group: producer
-
channelPoolMaxWait
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder channelPoolMaxWait(long channelPoolMaxWait)
Set the maximum number of milliseconds to wait for a channel from the pool. The option is a:long
type. Default: 1000 Group: producer
-
guaranteedDeliveries
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder guaranteedDeliveries(boolean guaranteedDeliveries)
When true, an exception will be thrown when the message cannot be delivered (basic.return) and the message is marked as mandatory. PublisherAcknowledgement will also be activated in this case. See also publisher acknowledgements - When will messages be confirmed. The option is a:boolean
type. Default: false Group: producer
-
immediate
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder immediate(boolean immediate)
This flag tells the server how to react if the message cannot be routed to a queue consumer immediately. If this flag is set, the server will return an undeliverable message with a Return method. If this flag is zero, the server will queue the message, but with no guarantee that it will ever be consumed. If the header is present rabbitmq.IMMEDIATE it will override this option. The option is a:boolean
type. Default: false Group: producer
-
lazyStartProducer
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a:boolean
type. Default: false Group: producer
-
mandatory
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder mandatory(boolean mandatory)
This flag tells the server how to react if the message cannot be routed to a queue. If this flag is set, the server will return an unroutable message with a Return method. If this flag is zero, the server silently drops the message. If the header is present rabbitmq.MANDATORY it will override this option. The option is a:boolean
type. Default: false Group: producer
-
publisherAcknowledgements
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder publisherAcknowledgements(boolean publisherAcknowledgements)
When true, the message will be published with publisher acknowledgements turned on. The option is a:boolean
type. Default: false Group: producer
-
publisherAcknowledgementsTimeout
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder publisherAcknowledgementsTimeout(long publisherAcknowledgementsTimeout)
The amount of time in milliseconds to wait for a basic.ack response from RabbitMQ server. The option is a:long
type. Group: producer
-
args
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder args(Map<String,Object> args)
Specify arguments for configuring the different RabbitMQ concepts, a different prefix is required for each: Exchange: arg.exchange. Queue: arg.queue. Binding: arg.binding. DLQ: arg.dlq.queue. DLQ Binding: arg.dlq.binding. For example to declare a queue with message ttl argument: http://localhost:5672/exchange/queueargs=arg.queue.x-message-ttl=60000. The option is a:java.util.Map
type. Group: advanced
-
autoDetectConnectionFactory
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder autoDetectConnectionFactory(boolean autoDetectConnectionFactory)
Whether to auto-detect looking up RabbitMQ connection factory from the registry. When enabled and a single instance of the connection factory is found then it will be used. An explicit connection factory can be configured on the component or endpoint level which takes precedence. The option is a:boolean
type. Default: true Group: advanced
-
automaticRecoveryEnabled
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder automaticRecoveryEnabled(Boolean automaticRecoveryEnabled)
Enables connection automatic recovery (uses connection implementation that performs automatic recovery when connection shutdown is not initiated by the application). The option is a:java.lang.Boolean
type. Group: advanced
-
autowiredEnabled
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder autowiredEnabled(boolean autowiredEnabled)
Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. The option is a:boolean
type. Default: true Group: advanced
-
clientProperties
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder clientProperties(Map<String,Object> clientProperties)
Connection client properties (client info used in negotiating with the server). The option is a:java.util.Map
type. Group: advanced
-
connectionFactoryExceptionHandler
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder connectionFactoryExceptionHandler(com.rabbitmq.client.ExceptionHandler connectionFactoryExceptionHandler)
Custom rabbitmq ExceptionHandler for ConnectionFactory. The option is a:com.rabbitmq.client.ExceptionHandler
type. Group: advanced
-
connectionTimeout
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder connectionTimeout(int connectionTimeout)
Connection timeout. The option is a:int
type. Default: 60000 Group: advanced
-
networkRecoveryInterval
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder networkRecoveryInterval(Integer networkRecoveryInterval)
Network recovery interval in milliseconds (interval used when recovering from network failure). The option is a:java.lang.Integer
type. Default: 5000 Group: advanced
-
requestedChannelMax
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestedChannelMax(int requestedChannelMax)
Connection requested channel max (max number of channels offered). The option is a:int
type. Default: 2047 Group: advanced
-
requestedFrameMax
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestedFrameMax(int requestedFrameMax)
Connection requested frame max (max size of frame offered). The option is a:int
type. Default: 0 Group: advanced
-
requestedHeartbeat
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestedHeartbeat(int requestedHeartbeat)
Connection requested heartbeat (heart-beat in seconds offered). The option is a:int
type. Default: 60 Group: advanced
-
requestTimeout
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestTimeout(long requestTimeout)
Set timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds). The option is a:long
type. Default: 20000 Group: advanced
-
requestTimeoutCheckerInterval
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder requestTimeoutCheckerInterval(long requestTimeoutCheckerInterval)
Set requestTimeoutCheckerInterval for inOut exchange. The option is a:long
type. Default: 1000 Group: advanced
-
topologyRecoveryEnabled
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder topologyRecoveryEnabled(Boolean topologyRecoveryEnabled)
Enables connection topology recovery (should topology recovery be performed). The option is a:java.lang.Boolean
type. Group: advanced
-
transferException
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder transferException(boolean transferException)
When true and an inOut Exchange failed on the consumer side send the caused Exception back in the response. The option is a:boolean
type. Default: false Group: advanced
-
password
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder password(String password)
Password for authenticated access. The option is a:java.lang.String
type. Default: guest Group: security
-
sslProtocol
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder sslProtocol(String sslProtocol)
Enables SSL on connection, accepted value are true, TLS and 'SSLv3. The option is a:java.lang.String
type. Group: security
-
trustManager
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder trustManager(TrustManager trustManager)
Configure SSL trust manager, SSL should be enabled for this option to be effective. The option is a:javax.net.ssl.TrustManager
type. Group: security
-
username
default RabbitmqComponentBuilderFactory.RabbitmqComponentBuilder username(String username)
Username in case of authenticated access. The option is a:java.lang.String
type. Default: guest Group: security
-
-