Interface StreamsBuilderFactoryBeanCustomizer

  • All Known Subinterfaces:
    StreamsBuilderFactoryBeanConfigurer
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @Deprecated
    @FunctionalInterface
    public interface StreamsBuilderFactoryBeanCustomizer
    Deprecated.
    in favor of StreamsBuilderFactoryBeanConfigurer due to a name clash with a similar class in Spring Boot.
    A customizer for the StreamsBuilderFactoryBean that is implicitly created by EnableKafkaStreams. If exactly one implementation of this interface is found in the application context (or one is marked as Primary, it will be invoked after the factory bean has been created and before it is started.
    Since:
    2.3
    Author:
    Gary Russell
    • Method Detail

      • configure

        void configure​(StreamsBuilderFactoryBean factoryBean)
        Deprecated.
        Configure the factory bean.
        Parameters:
        factoryBean - the factory bean.