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