Generated by
JDiff

Package org.springframework.scheduling.annotation

Added Classes
AsyncConfigurerSupport A convenience AsyncConfigurer that implements all methods so that the defaults are used.
 

Changed Classes and Interfaces
AbstractAsyncConfiguration Abstract base {@code Configuration} class providing common structure for enabling Spring's asynchronous method execution capability.
AnnotationAsyncExecutionInterceptor Specialization of AsyncExecutionInterceptor that delegates method execution to an {@code Executor} based on the Async annotation.
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).
AsyncConfigurer Interface to be implemented by @ Configuration classes annotated with @EnableAsync that wish to customize the Executor instance used when processing async method invocations or the AsyncUncaughtExceptionHandler instance used to process exception thrown from async method with {@code void} return type.
AsyncResult A pass-through {@code Future} handle that can be used for method signatures which are declared with a {@code Future} return type for asynchronous execution.