Uses of Package
org.springframework.scheduling.annotation
Package
Description
Annotation support for asynchronous method execution.
AspectJ-based scheduling support.
-
ClassDescriptionAbstract base
Configuration
class providing common structure for enabling Spring's asynchronous method execution capability.Bean post-processor that automatically applies asynchronous invocation behavior to any bean that carries theAsync
annotation at class or method-level by adding a correspondingAsyncAnnotationAdvisor
to the exposed proxy (either an existing AOP proxy or a newly generated proxy that implements all the target's interfaces).Interface to be implemented by @Configuration
classes annotated with @EnableAsync
that wish to customize theExecutor
instance used when processing async method invocations or theAsyncUncaughtExceptionHandler
instance used to process exception thrown from async method withvoid
return type.Annotation that marks a method to be scheduled.Bean post-processor that registers methods annotated with@Scheduled
to be invoked by aTaskScheduler
according to the "fixedRate", "fixedDelay", or "cron" expression provided via the annotation. -
ClassDescriptionAbstract base
Configuration
class providing common structure for enabling Spring's asynchronous method execution capability.