Uses of Class
org.springframework.scheduling.config.TriggerTask
Packages that use TriggerTask Package Description org.springframework.scheduling.config Support package for declarative scheduling configuration, with XML schema being the primary configuration format.Uses of TriggerTask in org.springframework.scheduling.config
Subclasses of TriggerTask in org.springframework.scheduling.config Modifier and Type Class Description classCronTaskTriggerTaskimplementation defining aRunnableto be executed according to a standard cron expression.Methods in org.springframework.scheduling.config that return types with arguments of type TriggerTask Modifier and Type Method Description List<TriggerTask>ScheduledTaskRegistrar. getTriggerTaskList()Get the trigger tasks as an unmodifiable list ofTriggerTaskobjects.Methods in org.springframework.scheduling.config with parameters of type TriggerTask Modifier and Type Method Description voidScheduledTaskRegistrar. addTriggerTask(TriggerTask task)Add aTriggerTask.ScheduledTaskScheduledTaskRegistrar. scheduleTriggerTask(TriggerTask task)Schedule the specified trigger task, either right away if possible or on initialization of the scheduler.Method parameters in org.springframework.scheduling.config with type arguments of type TriggerTask Modifier and Type Method Description voidScheduledTaskRegistrar. setTriggerTasksList(List<TriggerTask> triggerTasks)Specify triggered tasks as a list ofTriggerTaskobjects.