public interface Budget
| Modifier and Type | Method and Description |
|---|---|
boolean |
canContinue()
Whether the task has budget to continue executing or not
|
Duration |
elapsed()
The amount of time that has elapsed since the budget was created.
|
long |
initialDelay()
Defines an initial delay before running the task
|
long |
interval()
The interval between each task execution
|
boolean |
next()
Move the task to the next iteration
|
long initialDelay()
long interval()
boolean canContinue()
boolean next()
Duration elapsed()
Apache Camel