Class AsyncConfigurationSelector
java.lang.Object
org.springframework.context.annotation.AdviceModeImportSelector<EnableAsync>
org.springframework.scheduling.annotation.AsyncConfigurationSelector
- All Implemented Interfaces:
 ImportSelector
Selects which implementation of 
AbstractAsyncConfiguration should
 be used based on the value of EnableAsync.mode() on the importing
 @Configuration class.- Since:
 - 3.1
 - Author:
 - Chris Beams, Juergen Hoeller
 - See Also:
 
- 
Field Summary
Fields inherited from class org.springframework.context.annotation.AdviceModeImportSelector
DEFAULT_ADVICE_MODE_ATTRIBUTE_NAME - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionString[]selectImports(AdviceMode adviceMode) ReturnsProxyAsyncConfigurationorAspectJAsyncConfigurationforPROXYandASPECTJvalues ofEnableAsync.mode(), respectively.Methods inherited from class org.springframework.context.annotation.AdviceModeImportSelector
getAdviceModeAttributeName, selectImportsMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.context.annotation.ImportSelector
getExclusionFilter 
- 
Constructor Details
- 
AsyncConfigurationSelector
public AsyncConfigurationSelector() 
 - 
 - 
Method Details
- 
selectImports
ReturnsProxyAsyncConfigurationorAspectJAsyncConfigurationforPROXYandASPECTJvalues ofEnableAsync.mode(), respectively.- Specified by:
 selectImportsin classAdviceModeImportSelector<EnableAsync>- Parameters:
 adviceMode- the value of the advice mode attribute for the annotation specified via generics.- Returns:
 - array containing classes to import (empty array if none;
 
nullif the givenAdviceModeis unknown) 
 
 -