default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.allowNamedParameters(boolean allowNamedParameters) |
Whether to allow using named parameters in the queries.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.allowNamedParameters(String allowNamedParameters) |
Whether to allow using named parameters in the queries.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.backoffErrorThreshold(int backoffErrorThreshold) |
The number of subsequent error polls (failed due some error) that
should happen before the backoffMultipler should kick-in.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.backoffErrorThreshold(String backoffErrorThreshold) |
The number of subsequent error polls (failed due some error) that
should happen before the backoffMultipler should kick-in.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.backoffIdleThreshold(int backoffIdleThreshold) |
The number of subsequent idle polls that should happen before the
backoffMultipler should kick-in.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.backoffIdleThreshold(String backoffIdleThreshold) |
The number of subsequent idle polls that should happen before the
backoffMultipler should kick-in.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.backoffMultiplier(int backoffMultiplier) |
To let the scheduled polling consumer backoff if there has been a
number of subsequent idles/errors in a row.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.backoffMultiplier(String backoffMultiplier) |
To let the scheduled polling consumer backoff if there has been a
number of subsequent idles/errors in a row.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.basic() |
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.breakBatchOnConsumeFail(boolean breakBatchOnConsumeFail) |
Sets whether to break batch if onConsume failed.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.breakBatchOnConsumeFail(String breakBatchOnConsumeFail) |
Sets whether to break batch if onConsume failed.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.dataSource(String dataSource) |
Sets the DataSource to use to communicate with the database at
endpoint level.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.dataSource(DataSource dataSource) |
Sets the DataSource to use to communicate with the database at
endpoint level.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.delay(long delay) |
Milliseconds before the next poll.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.delay(String delay) |
Milliseconds before the next poll.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.expectedUpdateCount(int expectedUpdateCount) |
Sets an expected update count to validate when using onConsume.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.expectedUpdateCount(String expectedUpdateCount) |
Sets an expected update count to validate when using onConsume.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.greedy(boolean greedy) |
If greedy is enabled, then the ScheduledPollConsumer will run
immediately again, if the previous run polled 1 or more messages.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.greedy(String greedy) |
If greedy is enabled, then the ScheduledPollConsumer will run
immediately again, if the previous run polled 1 or more messages.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.initialDelay(long initialDelay) |
Milliseconds before the first poll starts.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.initialDelay(String initialDelay) |
Milliseconds before the first poll starts.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.maxMessagesPerPoll(int maxMessagesPerPoll) |
Sets the maximum number of messages to poll.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.maxMessagesPerPoll(String maxMessagesPerPoll) |
Sets the maximum number of messages to poll.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.onConsume(String onConsume) |
After processing each row then this query can be executed, if the
Exchange was processed successfully, for example to mark the row as
processed.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.onConsumeBatchComplete(String onConsumeBatchComplete) |
After processing the entire batch, this query can be executed to bulk
update rows etc.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.onConsumeFailed(String onConsumeFailed) |
After processing each row then this query can be executed, if the
Exchange failed, for example to mark the row as failed.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.outputClass(String outputClass) |
Specify the full package and class name to use as conversion when
outputType=SelectOne.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.outputHeader(String outputHeader) |
Store the query result in a header instead of the message body.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.outputType(String outputType) |
Make the output of consumer or producer to SelectList as List of Map,
or SelectOne as single Java object in the following way: a) If the
query has only single column, then that JDBC Column object is
returned.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.outputType(org.apache.camel.component.sql.SqlOutputType outputType) |
Make the output of consumer or producer to SelectList as List of Map,
or SelectOne as single Java object in the following way: a) If the
query has only single column, then that JDBC Column object is
returned.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.repeatCount(long repeatCount) |
Specifies a maximum limit of number of fires.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.repeatCount(String repeatCount) |
Specifies a maximum limit of number of fires.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.routeEmptyResultSet(boolean routeEmptyResultSet) |
Sets whether empty resultset should be allowed to be sent to the next
hop.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.routeEmptyResultSet(String routeEmptyResultSet) |
Sets whether empty resultset should be allowed to be sent to the next
hop.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.runLoggingLevel(String runLoggingLevel) |
The consumer logs a start/complete log line when it polls.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.runLoggingLevel(org.apache.camel.LoggingLevel runLoggingLevel) |
The consumer logs a start/complete log line when it polls.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.scheduledExecutorService(String scheduledExecutorService) |
Allows for configuring a custom/shared thread pool to use for the
consumer.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.scheduledExecutorService(ScheduledExecutorService scheduledExecutorService) |
Allows for configuring a custom/shared thread pool to use for the
consumer.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.scheduler(Object scheduler) |
To use a cron scheduler from either camel-spring or camel-quartz
component.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.scheduler(String scheduler) |
To use a cron scheduler from either camel-spring or camel-quartz
component.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.schedulerProperties(String key,
Object value) |
To configure additional properties when using a custom scheduler or
any of the Quartz, Spring based scheduler.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.schedulerProperties(Map values) |
To configure additional properties when using a custom scheduler or
any of the Quartz, Spring based scheduler.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.sendEmptyMessageWhenIdle(boolean sendEmptyMessageWhenIdle) |
If the polling consumer did not poll any files, you can enable this
option to send an empty message (no body) instead.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.sendEmptyMessageWhenIdle(String sendEmptyMessageWhenIdle) |
If the polling consumer did not poll any files, you can enable this
option to send an empty message (no body) instead.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.separator(char separator) |
The separator to use when parameter values is taken from message body
(if the body is a String type), to be inserted at # placeholders.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.separator(String separator) |
The separator to use when parameter values is taken from message body
(if the body is a String type), to be inserted at # placeholders.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.startScheduler(boolean startScheduler) |
Whether the scheduler should be auto started.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.startScheduler(String startScheduler) |
Whether the scheduler should be auto started.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.timeUnit(String timeUnit) |
Time unit for initialDelay and delay options.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.timeUnit(TimeUnit timeUnit) |
Time unit for initialDelay and delay options.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.transacted(boolean transacted) |
Enables or disables transaction.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.transacted(String transacted) |
Enables or disables transaction.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.useFixedDelay(boolean useFixedDelay) |
Controls if fixed delay or fixed rate is used.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.useFixedDelay(String useFixedDelay) |
Controls if fixed delay or fixed rate is used.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.useIterator(boolean useIterator) |
Sets how resultset should be delivered to route.
|
default SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.useIterator(String useIterator) |
Sets how resultset should be delivered to route.
|