Uses of Package
org.springframework.scheduling.annotation
Packages that use org.springframework.scheduling.annotation
Package
Description
Annotation support for asynchronous method execution.
AspectJ-based scheduling support.
-
Classes in org.springframework.scheduling.annotation used by org.springframework.scheduling.annotationClassDescriptionAbstract 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.Enables Spring's asynchronous method execution capability, similar to functionality found in Spring's<task:*>
XML namespace.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. -
Classes in org.springframework.scheduling.annotation used by org.springframework.scheduling.aspectjClassDescriptionAbstract base
Configuration
class providing common structure for enabling Spring's asynchronous method execution capability.