public static interface TimerEndpointBuilderFactory.TimerEndpointBuilder
extends org.apache.camel.builder.EndpointConsumerBuilder
| Modifier and Type | Method and Description |
|---|---|
default TimerEndpointBuilderFactory.AdvancedTimerEndpointBuilder |
advanced() |
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
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 TimerEndpointBuilderFactory.TimerEndpointBuilder |
bridgeErrorHandler(String 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 TimerEndpointBuilderFactory.TimerEndpointBuilder |
delay(long delay)
Delay before first event is triggered.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
delay(String delay)
Delay before first event is triggered.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
fixedRate(boolean fixedRate)
Events take place at approximately regular intervals, separated by
the specified period.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
fixedRate(String fixedRate)
Events take place at approximately regular intervals, separated by
the specified period.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
includeMetadata(boolean includeMetadata)
Whether to include metadata in the exchange such as fired time, timer
name, timer count etc.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
includeMetadata(String includeMetadata)
Whether to include metadata in the exchange such as fired time, timer
name, timer count etc.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
period(long period)
If greater than 0, generate periodic events every period.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
period(String period)
If greater than 0, generate periodic events every period.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
repeatCount(long repeatCount)
Specifies a maximum limit of number of fires.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
repeatCount(String repeatCount)
Specifies a maximum limit of number of fires.
|
default TimerEndpointBuilderFactory.AdvancedTimerEndpointBuilder advanced()
default TimerEndpointBuilderFactory.TimerEndpointBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder bridgeErrorHandler(String bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder delay(long delay)
long type.
Default: 1s
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder delay(String delay)
long type.
Default: 1s
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder fixedRate(boolean fixedRate)
boolean type.
Default: false
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder fixedRate(String fixedRate)
boolean type.
Default: false
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder includeMetadata(boolean includeMetadata)
boolean type.
Default: true
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder includeMetadata(String includeMetadata)
boolean type.
Default: true
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder period(long period)
long type.
Default: 1s
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder period(String period)
long type.
Default: 1s
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder repeatCount(long repeatCount)
long type.
Default: 0
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder repeatCount(String repeatCount)
long type.
Default: 0
Group: consumerApache Camel