Interface KafkaStreamsInfrastructureCustomizer
- All Known Implementing Classes:
- CompositeKafkaStreamsInfrastructureCustomizer
public interface KafkaStreamsInfrastructureCustomizer
A customizer for infrastructure components such as the 
StreamsBuilder and
 Topology. It can be provided to the StreamsBuilderFactoryBean which
 will apply the changes before creating the stream.- Since:
- 2.4.1
- Author:
- Gary Russell
- 
Method SummaryModifier and TypeMethodDescriptiondefault voidconfigureBuilder(org.apache.kafka.streams.StreamsBuilder builder) Configure the builder.default voidconfigureTopology(org.apache.kafka.streams.Topology topology) Configure the topology.
- 
Method Details- 
configureBuilderdefault void configureBuilder(org.apache.kafka.streams.StreamsBuilder builder) Configure the builder.- Parameters:
- builder- the builder.
 
- 
configureTopologydefault void configureTopology(org.apache.kafka.streams.Topology topology) Configure the topology.- Parameters:
- topology- the topology
 
 
-