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.

@FunctionalInterface public interface ConfigurableInstanceFactoryPostProcessor
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 Details

    • postProcessFactory

      void postProcessFactory(ConfigurableInstanceFactory factory)
      Runs post-processing on the provided factory.
      Parameters:
      factory - the instance factory to post-process