Changed Classes and Interfaces |
AbstractAsyncConfiguration
|
Abstract base {@code Configuration} class providing common structure for enabling
Spring's asynchronous method execution capability. |
Async
|
Annotation that marks a method as a candidate for asynchronous execution. |
AsyncAnnotationAdvisor
|
Advisor that activates asynchronous method execution through the Async
annotation. |
AsyncAnnotationBeanPostProcessor
|
Bean post-processor that automatically applies asynchronous invocation
behavior to any bean that carries the Async annotation at class or
method-level by adding a corresponding AsyncAnnotationAdvisor to the
exposed proxy (either an existing AOP proxy or a newly generated proxy that
implements all of the target's interfaces). |
EnableScheduling
|
Enables Spring's scheduled task execution capability, similar to
functionality found in Spring's {@code } XML namespace. |
Scheduled
|
Annotation that marks a method to be scheduled. |
SchedulingConfigurer
|
Optional interface to be implemented by @Configuration classes annotated
with @EnableScheduling. |