Uses of Class
org.springframework.scheduling.config.IntervalTask
Package
Description
Support package for declarative scheduling configuration,
with XML schema being the primary configuration format.
-
Uses of IntervalTask in org.springframework.scheduling.config
Modifier and TypeClassDescriptionclass
Specialization ofIntervalTask
for fixed-delay semantics.class
Specialization ofIntervalTask
for fixed-rate semantics.Modifier and TypeMethodDescriptionScheduledTaskRegistrar.getFixedDelayTaskList()
Get the fixed-delay tasks as an unmodifiable list ofIntervalTask
objects.ScheduledTaskRegistrar.getFixedRateTaskList()
Get the fixed-rate tasks as an unmodifiable list ofIntervalTask
objects.Modifier and TypeMethodDescriptionvoid
ScheduledTaskRegistrar.addFixedDelayTask
(IntervalTask task) Add a fixed-delayIntervalTask
.void
ScheduledTaskRegistrar.addFixedRateTask
(IntervalTask task) Add a fixed-rateIntervalTask
.Modifier and TypeMethodDescriptionvoid
ScheduledTaskRegistrar.setFixedDelayTasksList
(List<IntervalTask> fixedDelayTasks) Specify fixed-delay tasks as a list ofIntervalTask
objects.void
ScheduledTaskRegistrar.setFixedRateTasksList
(List<IntervalTask> fixedRateTasks) Specify fixed-rate tasks as a list ofIntervalTask
objects.