Package org.springframework.kafka.config
Interface StreamsBuilderFactoryBeanCustomizer
-
- 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 ofStreamsBuilderFactoryBeanConfigurer
due to a name clash with a similar class in Spring Boot.A customizer for theStreamsBuilderFactoryBean
that is implicitly created byEnableKafkaStreams
. If exactly one implementation of this interface is found in the application context (or one is marked asPrimary
, it will be invoked after the factory bean has been created and before it is started.- Since:
- 2.3
- Author:
- Gary Russell
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
configure(StreamsBuilderFactoryBean factoryBean)
Deprecated.Configure the factory bean.
-
-
-
Method Detail
-
configure
void configure(StreamsBuilderFactoryBean factoryBean)
Deprecated.Configure the factory bean.- Parameters:
factoryBean
- the factory bean.
-
-