public static interface SedaComponentBuilderFactory.SedaComponentBuilder extends ComponentBuilder<org.apache.camel.component.seda.SedaComponent>
| Modifier and Type | Method and Description |
|---|---|
default SedaComponentBuilderFactory.SedaComponentBuilder |
basicPropertyBinding(boolean basicPropertyBinding)
Whether the component should use basic property binding (Camel 2.x)
or the newer property binding with additional capabilities.
|
default SedaComponentBuilderFactory.SedaComponentBuilder |
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 SedaComponentBuilderFactory.SedaComponentBuilder |
concurrentConsumers(int concurrentConsumers)
Sets the default number of concurrent threads processing exchanges.
|
default SedaComponentBuilderFactory.SedaComponentBuilder |
defaultBlockWhenFull(boolean defaultBlockWhenFull)
Whether a thread that sends messages to a full SEDA queue will block
until the queue's capacity is no longer exhausted.
|
default SedaComponentBuilderFactory.SedaComponentBuilder |
defaultDiscardWhenFull(boolean defaultDiscardWhenFull)
Whether a thread that sends messages to a full SEDA queue will be
discarded.
|
default SedaComponentBuilderFactory.SedaComponentBuilder |
defaultOfferTimeout(long defaultOfferTimeout)
Whether a thread that sends messages to a full SEDA queue will block
until the queue's capacity is no longer exhausted.
|
default SedaComponentBuilderFactory.SedaComponentBuilder |
defaultQueueFactory(org.apache.camel.component.seda.BlockingQueueFactory<org.apache.camel.Exchange> defaultQueueFactory)
Sets the default queue factory.
|
default SedaComponentBuilderFactory.SedaComponentBuilder |
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).
|
default SedaComponentBuilderFactory.SedaComponentBuilder |
queueSize(int queueSize)
Sets the default maximum capacity of the SEDA queue (i.e., the number
of messages it can hold).
|
build, build, doSetProperty, registerdefault SedaComponentBuilderFactory.SedaComponentBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault SedaComponentBuilderFactory.SedaComponentBuilder concurrentConsumers(int concurrentConsumers)
int type.
Default: 1
Group: consumerdefault SedaComponentBuilderFactory.SedaComponentBuilder defaultBlockWhenFull(boolean defaultBlockWhenFull)
boolean type.
Default: false
Group: producerdefault SedaComponentBuilderFactory.SedaComponentBuilder defaultDiscardWhenFull(boolean defaultDiscardWhenFull)
boolean type.
Default: false
Group: producerdefault SedaComponentBuilderFactory.SedaComponentBuilder defaultOfferTimeout(long defaultOfferTimeout)
long type.
Group: producerdefault SedaComponentBuilderFactory.SedaComponentBuilder lazyStartProducer(boolean lazyStartProducer)
boolean type.
Default: false
Group: producerdefault SedaComponentBuilderFactory.SedaComponentBuilder basicPropertyBinding(boolean basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault SedaComponentBuilderFactory.SedaComponentBuilder defaultQueueFactory(org.apache.camel.component.seda.BlockingQueueFactory<org.apache.camel.Exchange> defaultQueueFactory)
org.apache.camel.component.seda.BlockingQueueFactory type.
Group: advanceddefault SedaComponentBuilderFactory.SedaComponentBuilder queueSize(int queueSize)
int type.
Default: 1000
Group: advancedApache Camel