Uses of Class
org.springframework.scheduling.config.IntervalTask
Packages that use IntervalTask Package Description org.springframework.scheduling.config 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.config Modifier and Type Class Description classFixedDelayTaskSpecialization ofIntervalTaskfor fixed-delay semantics.classFixedRateTaskSpecialization ofIntervalTaskfor fixed-rate semantics.Methods in org.springframework.scheduling.config that return types with arguments of type IntervalTask Modifier and Type Method Description List<IntervalTask>ScheduledTaskRegistrar. getFixedDelayTaskList()Get the fixed-delay tasks as an unmodifiable list ofIntervalTaskobjects.List<IntervalTask>ScheduledTaskRegistrar. getFixedRateTaskList()Get the fixed-rate tasks as an unmodifiable list ofIntervalTaskobjects.Methods in org.springframework.scheduling.config with parameters of type IntervalTask Modifier and Type Method Description voidScheduledTaskRegistrar. addFixedDelayTask(IntervalTask task)Add a fixed-delayIntervalTask.voidScheduledTaskRegistrar. addFixedRateTask(IntervalTask task)Add a fixed-rateIntervalTask.ScheduledTaskScheduledTaskRegistrar. scheduleFixedDelayTask(IntervalTask task)Deprecated.as of 5.0.2, in favor ofScheduledTaskRegistrar.scheduleFixedDelayTask(FixedDelayTask)ScheduledTaskScheduledTaskRegistrar. scheduleFixedRateTask(IntervalTask task)Deprecated.as of 5.0.2, in favor ofScheduledTaskRegistrar.scheduleFixedRateTask(FixedRateTask)Method parameters in org.springframework.scheduling.config with type arguments of type IntervalTask Modifier and Type Method Description voidScheduledTaskRegistrar. 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.