Class | Description |
---|---|
Job<V> |
A job is an asynchronously executed unit of work
|
JobsPlugin |
Annotation Type | Description |
---|---|
Every |
Run a job at specified interval
Example, @Every("1h")
|
On |
Run the job using a Cron expression
We use the Quartz CRON trigger (http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger)
|
OnApplicationStart |
A job run at application start.
|
OnApplicationStop |
A job run when the application is stopped under graceful circumstances.
|
Guillaume Bort & zenexity - Distributed under Apache 2 licence, without any warrantly