类 AsyncExecutionAspectSupport

  • 所有已实现的接口:
    Aware, BeanFactoryAware
    直接已知子类:
    AsyncExecutionInterceptor

    public abstract class AsyncExecutionAspectSupport
    extends Object
    implements BeanFactoryAware
    Base class for asynchronous method execution aspects, such as org.springframework.scheduling.annotation.AnnotationAsyncExecutionInterceptor or org.springframework.scheduling.aspectj.AnnotationAsyncExecutionAspect.

    Provides support for executor qualification on a method-by-method basis. AsyncExecutionAspectSupport objects must be constructed with a default Executor, but each individual method may further qualify a specific Executor bean to be used when executing it, e.g. through an annotation attribute.

    从以下版本开始:
    3.1.2
    作者:
    Chris Beams, Juergen Hoeller, Stephane Nicoll