See: Description
| Enum | Description |
|---|---|
| CronType |
Defines the cron format.
|
| SimpleScheduleType |
Defines the way in which a method annotated with
SimpleTrigger is
scheduled with a ScheduledExecutorService. |
| Annotation Type | Description |
|---|---|
| Async |
Tags a method to be run asynchronously.
|
| CronTrigger |
A trigger annotation for specifying a cron pattern which describes the
scheduling of the method.
|
| DelayedTrigger |
A trigger that will execute a method only once after a certain delay.
|
| ExecutionScope |
A guice scope that pertains for a single execution of a scheduled method.
|
| Executor |
Allows to specify the class part of the
Key that is used to look up
an ExecutorService for a method annotated with Async. |
| OnError |
Can be put on a method which is annotated with
Scheduled to additionally
specify an exception handler. |
| Scheduled |
Marks a method to be executed periodically.
|
| ScheduledScope |
A guice scope that pertains for one method annotated with
Scheduled. |
| Scheduler |
Allows to specify the class part of the
Key that is used to look up a
ScheduledExecutorService for a method annotated with
Scheduled. |
| SimpleTrigger |
A trigger annotation that allows to define a simple periodicity for method
execution.
|
| Trigger |
Marks another annotation type to be a trigger annotation.
|
Copyright © 2014–2018. All rights reserved.