Interface SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointConsumerBuilder
,org.apache.camel.EndpointConsumerResolver
,org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
,SqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder
,SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
- Enclosing interface:
- SqsEndpointBuilderFactory
public static interface SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder extends SqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder, SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
Advanced builder for endpoint for the AWS Simple Queue Service (SQS) component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SqsEndpointBuilderFactory.SqsEndpointBuilder
basic()
default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder
delayQueue(boolean delayQueue)
Define if you want to apply delaySeconds option to the queue or on single messages.default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder
delayQueue(String delayQueue)
Define if you want to apply delaySeconds option to the queue or on single messages.default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder
queueUrl(String queueUrl)
To define the queueUrl explicitly.default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).-
Methods inherited from interface org.apache.camel.builder.EndpointConsumerBuilder
doSetMultiValueProperties, doSetMultiValueProperty, doSetProperty, getUri
-
Methods inherited from interface org.apache.camel.builder.EndpointProducerBuilder
doSetMultiValueProperties, doSetMultiValueProperty, doSetProperty, expr, expr, getUri
-
Methods inherited from interface org.apache.camel.builder.endpoint.dsl.SqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder
exceptionHandler, exceptionHandler, exchangePattern, exchangePattern, pollStrategy, pollStrategy
-
-
-
-
Method Detail
-
basic
default SqsEndpointBuilderFactory.SqsEndpointBuilder basic()
- Specified by:
basic
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder
- Specified by:
basic
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
-
delayQueue
default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder delayQueue(boolean delayQueue)
Define if you want to apply delaySeconds option to the queue or on single messages. The option is a:boolean
type. Default: false Group: advanced- Specified by:
delayQueue
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder
- Specified by:
delayQueue
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
-
delayQueue
default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder delayQueue(String delayQueue)
Define if you want to apply delaySeconds option to the queue or on single messages. The option will be converted to aboolean
type. Default: false Group: advanced- Specified by:
delayQueue
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder
- Specified by:
delayQueue
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
-
queueUrl
default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder queueUrl(String queueUrl)
To define the queueUrl explicitly. All other parameters, which would influence the queueUrl, are ignored. This parameter is intended to be used, to connect to a mock implementation of SQS, for testing purposes. The option is a:java.lang.String
type. Group: advanced- Specified by:
queueUrl
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder
- Specified by:
queueUrl
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
-
synchronous
default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option is a:boolean
type. Default: false Group: advanced- Specified by:
synchronous
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder
- Specified by:
synchronous
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
-
synchronous
default SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option will be converted to aboolean
type. Default: false Group: advanced- Specified by:
synchronous
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointConsumerBuilder
- Specified by:
synchronous
in interfaceSqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
-
-