Package org.springframework.kafka.config
Interface StreamsBuilderFactoryBeanConfigurer
-
- All Superinterfaces:
org.springframework.core.Ordered
- 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 StreamsBuilderFactoryBeanConfigurer extends org.springframework.core.Ordered
A configurer forStreamsBuilderFactoryBean
. Applied, in order, to the singleStreamsBuilderFactoryBean
configured by the framework. Invoked after the bean is created and before it is started. Default order is 0.- Since:
- 2.6.7
- Author:
- Gary Russell
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
configure(StreamsBuilderFactoryBean factoryBean)
Configure the factory bean.default int
getOrder()
-
-
-
Method Detail
-
configure
void configure(StreamsBuilderFactoryBean factoryBean)
Configure the factory bean.- Parameters:
factoryBean
- the factory bean.
-
getOrder
default int getOrder()
- Specified by:
getOrder
in interfaceorg.springframework.core.Ordered
-
-