Package ubic.gemma.core.context
Interface AsyncFactoryBean<T>
-
- All Superinterfaces:
org.springframework.beans.factory.FactoryBean<Future<T>>
- All Known Implementing Classes:
AbstractAsyncFactoryBean
,HomologeneServiceFactory
public interface AsyncFactoryBean<T> extends org.springframework.beans.factory.FactoryBean<Future<T>>
Async extension of theFactoryBean
interface.Limitation:
Attempting to inject aList<Future<MyService>>
will produce unexpected types in the collections if you have defined other subclasses ofAsyncFactoryBean
for other bean types, there is unfortunately no direct replacement for this, and you will have to filter the beans by type manually by callingBeanFactory.getBean(Class)
with the class ofFuture
.- Author:
- poirigui
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Future<T>
getObject()
Obtain a bean asynchronously.boolean
isInitialized()
Indicate if this bean has been initialized or if its initialization is pending.
-
-
-
Method Detail
-
getObject
Future<T> getObject()
Obtain a bean asynchronously.- Specified by:
getObject
in interfaceorg.springframework.beans.factory.FactoryBean<T>
- Returns:
- a future that completes when the bean is ready
-
isInitialized
boolean isInitialized()
Indicate if this bean has been initialized or if its initialization is pending.This is only meaningful if
FactoryBean.isSingleton()
is true as otherwise a new, yet to be initialized bean will be returned everytime and this method will always return false.
-
-