Package org.springframework.kafka.config
Interface KafkaStreamsInfrastructureCustomizer
-
- All Known Implementing Classes:
CompositeKafkaStreamsInfrastructureCustomizer
public interface KafkaStreamsInfrastructureCustomizer
A customizer for infrastructure components such as theStreamsBuilder
andTopology
. It can be provided to theStreamsBuilderFactoryBean
which will apply the changes before creating the stream.- Since:
- 2.4.1
- Author:
- Gary Russell
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
configureBuilder(org.apache.kafka.streams.StreamsBuilder builder)
Configure the builder.default void
configureTopology(org.apache.kafka.streams.Topology topology)
Configure the topology.
-
-
-
Method Detail
-
configureBuilder
default void configureBuilder(org.apache.kafka.streams.StreamsBuilder builder)
Configure the builder.- Parameters:
builder
- the builder.
-
configureTopology
default void configureTopology(org.apache.kafka.streams.Topology topology)
Configure the topology.- Parameters:
topology
- the topology
-
-