static ApplicationContext.ScheduledCallback |
ApplicationContext.runAndScheduleRecurringCallback(java.lang.Runnable callback,
long period) |
Runs a task and then schedules it for repeated execution.
|
static ApplicationContext.ScheduledCallback |
ApplicationContext.runAndScheduleRecurringCallback(java.lang.Runnable callback,
long delay,
long period) |
Runs a task once and then schedules it for repeated execution.
|
static ApplicationContext.ScheduledCallback |
ApplicationContext.scheduleCallback(java.lang.Runnable callback,
long delay) |
Schedules a task for one-time execution.
|
static ApplicationContext.ScheduledCallback |
ApplicationContext.scheduleRecurringCallback(java.lang.Runnable callback,
long period) |
Schedules a task for repeated execution.
|
static ApplicationContext.ScheduledCallback |
ApplicationContext.scheduleRecurringCallback(java.lang.Runnable callback,
long delay,
long period) |
Schedules a task for repeated execution.
|