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 TypeClassDescriptionclassSpecialization ofIntervalTaskfor fixed-delay semantics.classSpecialization ofIntervalTaskfor 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 ofIntervalTaskobjects.ScheduledTaskRegistrar.getFixedRateTaskList()Get the fixed-rate tasks as an unmodifiable list ofIntervalTaskobjects.Methods in org.springframework.scheduling.config with parameters of type IntervalTaskModifier and TypeMethodDescriptionvoidScheduledTaskRegistrar.addFixedDelayTask(IntervalTask task) Add a fixed-delayIntervalTask.voidScheduledTaskRegistrar.addFixedRateTask(IntervalTask task) Add a fixed-rateIntervalTask.Method parameters in org.springframework.scheduling.config with type arguments of type IntervalTaskModifier and TypeMethodDescriptionvoidScheduledTaskRegistrar.setFixedDelayTasksList(List<IntervalTask> fixedDelayTasks) Specify fixed-delay tasks as a list ofIntervalTaskobjects.voidScheduledTaskRegistrar.setFixedRateTasksList(List<IntervalTask> fixedRateTasks) Specify fixed-rate tasks as a list ofIntervalTaskobjects.