Interface ConfigurableInstanceFactoryPostProcessor
- All Known Implementing Classes:
FactoryResolversPostProcessor
,GenericFactoryResolversPostProcessor
,PluginAnnotationFactoryResolversPostProcessor
,SingletonScopePostProcessor
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Provides post-processing capabilities to the initialization of a
ConfigurableInstanceFactory
.
Implementations should be registered as ServiceLoader
services for this interface and may include an
Ordered
annotation on the class for overriding the order it will be invoked.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Runs post-processing on the provided factory.
-
Method Details
-
postProcessFactory
Runs post-processing on the provided factory.- Parameters:
factory
- the instance factory to post-process
-