Interface SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
SedaEndpointBuilderFactory.AdvancedSedaEndpointBuilder
- Enclosing interface:
- SedaEndpointBuilderFactory
public static interface SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint producers for the SEDA component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SedaEndpointBuilderFactory.SedaEndpointProducerBuilder
basic()
default SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder
queue(String queue)
Define the queue instance which will be used by the endpoint.default SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder
queue(BlockingQueue queue)
Define the queue instance which will be used by the endpoint.default SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder
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 SedaEndpointBuilderFactory.SedaEndpointProducerBuilder basic()
-
queue
default SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder queue(BlockingQueue queue)
Define the queue instance which will be used by the endpoint. The option is a:java.util.concurrent.BlockingQueue
type. Group: advanced
-
queue
default SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder queue(String queue)
Define the queue instance which will be used by the endpoint. The option will be converted to ajava.util.concurrent.BlockingQueue
type. Group: advanced
-
synchronous
default SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder 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 SedaEndpointBuilderFactory.AdvancedSedaEndpointProducerBuilder 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
-
-