Uses of Class
org.springframework.scheduling.config.IntervalTask
Packages that use 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
Subclasses of IntervalTask in org.springframework.scheduling.configModifier and TypeClassDescriptionclass
Specialization ofIntervalTask
for fixed-delay semantics.class
Specialization ofIntervalTask
for fixed-rate semantics.Methods in org.springframework.scheduling.config that return types with arguments of type IntervalTaskModifier 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.Methods in org.springframework.scheduling.config with parameters of type IntervalTaskModifier and TypeMethodDescriptionvoid
ScheduledTaskRegistrar.addFixedDelayTask
(IntervalTask task) Add a fixed-delayIntervalTask
.void
ScheduledTaskRegistrar.addFixedRateTask
(IntervalTask task) Add a fixed-rateIntervalTask
.Method parameters in org.springframework.scheduling.config with type arguments of type IntervalTaskModifier 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.