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)
The number of milliseconds to wait before the first event is
generated.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
delay(String delay)
The number of milliseconds to wait before the first event is
generated.
|
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 |
period(long period)
If greater than 0, generate periodic events every period
milliseconds.
|
default TimerEndpointBuilderFactory.TimerEndpointBuilder |
period(String period)
If greater than 0, generate periodic events every period
milliseconds.
|
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.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder bridgeErrorHandler(String bridgeErrorHandler)
boolean type.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder delay(long delay)
long type.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder delay(String delay)
long type.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder fixedRate(boolean fixedRate)
boolean type.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder fixedRate(String fixedRate)
boolean type.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder period(long period)
long type.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder period(String period)
long type.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder repeatCount(long repeatCount)
long type.
Group: consumerdefault TimerEndpointBuilderFactory.TimerEndpointBuilder repeatCount(String repeatCount)
long type.
Group: consumerApache Camel