Interface SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
SqsEndpointBuilderFactory.AdvancedSqsEndpointBuilder
- Enclosing interface:
- SqsEndpointBuilderFactory
public static interface SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint producers for the AWS Simple Queue Service (SQS) component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SqsEndpointBuilderFactory.SqsEndpointProducerBuilder
basic()
default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
delayQueue(boolean delayQueue)
Define if you want to apply delaySeconds option to the queue or on single messages.default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
delayQueue(String delayQueue)
Define if you want to apply delaySeconds option to the queue or on single messages.default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
queueUrl(String queueUrl)
To define the queueUrl explicitly.default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).
-
-
-
Method Detail
-
basic
default SqsEndpointBuilderFactory.SqsEndpointProducerBuilder basic()
-
delayQueue
default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder 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
-
delayQueue
default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder 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
-
queueUrl
default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder 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
-
synchronous
default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder 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
-
synchronous
default SqsEndpointBuilderFactory.AdvancedSqsEndpointProducerBuilder 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
-
-