public static interface QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder
extends org.apache.camel.builder.EndpointConsumerBuilder
| Modifier and Type | Method and Description |
|---|---|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
accessKey(String accessKey)
Access key for the associated azure account name to be used for
authentication with azure queue services.
|
default QueueEndpointBuilderFactory.AdvancedQueueEndpointConsumerBuilder |
advanced() |
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
autoDiscoverClient(boolean autoDiscoverClient)
Setting the autoDiscoverClient mechanism, if true, the component will
look for a client instance in the registry automatically otherwise it
will skip that checking.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
autoDiscoverClient(String autoDiscoverClient)
Setting the autoDiscoverClient mechanism, if true, the component will
look for a client instance in the registry automatically otherwise it
will skip that checking.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
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 QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
bridgeErrorHandler(String 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 QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
credentials(Object credentials)
StorageSharedKeyCredential can be injected to create the azure
client, this holds the important authentication information.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
credentials(String credentials)
StorageSharedKeyCredential can be injected to create the azure
client, this holds the important authentication information.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
maxMessages(Integer maxMessages)
Maximum number of messages to get, if there are less messages exist
in the queue than requested all the messages will be returned.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
maxMessages(String maxMessages)
Maximum number of messages to get, if there are less messages exist
in the queue than requested all the messages will be returned.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
messageId(String messageId)
The ID of the message to be deleted or updated.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
popReceipt(String popReceipt)
Unique identifier that must match for the message to be deleted or
updated.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
serviceClient(Object serviceClient)
Service client to a storage account to interact with the queue
service.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
serviceClient(String serviceClient)
Service client to a storage account to interact with the queue
service.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
timeout(Duration timeout)
An optional timeout applied to the operation.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
timeout(String timeout)
An optional timeout applied to the operation.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
timeToLive(Duration timeToLive)
How long the message will stay alive in the queue.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
timeToLive(String timeToLive)
How long the message will stay alive in the queue.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
visibilityTimeout(Duration visibilityTimeout)
The timeout period for how long the message is invisible in the
queue.
|
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder |
visibilityTimeout(String visibilityTimeout)
The timeout period for how long the message is invisible in the
queue.
|
default QueueEndpointBuilderFactory.AdvancedQueueEndpointConsumerBuilder advanced()
default QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder autoDiscoverClient(boolean autoDiscoverClient)
boolean type.
Default: true
Group: commondefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder autoDiscoverClient(String autoDiscoverClient)
boolean type.
Default: true
Group: commondefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder serviceClient(Object serviceClient)
com.azure.storage.queue.QueueServiceClient type.
Group: commondefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder serviceClient(String serviceClient)
com.azure.storage.queue.QueueServiceClient type.
Group: commondefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder bridgeErrorHandler(String bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder maxMessages(Integer maxMessages)
java.lang.Integer type.
Default: 1
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder maxMessages(String maxMessages)
java.lang.Integer
type.
Default: 1
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder messageId(String messageId)
java.lang.String type.
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder popReceipt(String popReceipt)
java.lang.String type.
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder timeout(Duration timeout)
java.time.Duration type.
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder timeout(String timeout)
java.time.Duration
type.
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder timeToLive(Duration timeToLive)
java.time.Duration type.
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder timeToLive(String timeToLive)
java.time.Duration
type.
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder visibilityTimeout(Duration visibilityTimeout)
java.time.Duration type.
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder visibilityTimeout(String visibilityTimeout)
java.time.Duration
type.
Group: queuedefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder accessKey(String accessKey)
java.lang.String type.
Group: securitydefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder credentials(Object credentials)
com.azure.storage.common.StorageSharedKeyCredential
type.
Group: securitydefault QueueEndpointBuilderFactory.QueueEndpointConsumerBuilder credentials(String credentials)
com.azure.storage.common.StorageSharedKeyCredential
type.
Group: securityApache Camel