Uses of Annotation Interface
org.springframework.scheduling.annotation.Scheduled
Packages that use Scheduled
Package
Description
Annotation support for asynchronous method execution.
-
Uses of Scheduled in org.springframework.scheduling.annotation
Methods in org.springframework.scheduling.annotation with parameters of type ScheduledModifier and TypeMethodDescriptionprotected voidScheduledAnnotationBeanPostProcessor.processScheduled(Scheduled scheduled, Method method, Object bean) Process the given@Scheduledmethod declaration on the given bean, attempting to distinguish reactive methods from synchronous methods.protected voidScheduledAnnotationBeanPostProcessor.processScheduledAsync(Scheduled scheduled, Method method, Object bean) Process the given@Scheduledbean method declaration which returns aPublisher, or the given Kotlin suspending function converted to aPublisher.protected voidScheduledAnnotationBeanPostProcessor.processScheduledSync(Scheduled scheduled, Method method, Object bean) Process the given@Scheduledmethod declaration on the given bean, as a synchronous method.protected voidScheduledAnnotationBeanPostProcessor.processScheduledTask(Scheduled scheduled, Runnable runnable, Method method, Object bean) Parse theScheduledannotation and schedule the providedRunnableaccordingly.