Class ConditionalStreamsApplication.NormalizeStreamsTopology
- java.lang.Object
-
- io.streamthoughts.azkarra.api.components.BaseComponentModule
-
- io.streamthoughts.examples.azkarra.conditional.ConditionalStreamsApplication.NormalizeStreamsTopology
-
- All Implemented Interfaces:
ComponentFactoryAware
,ConfigurableComponentFactory
,Versioned
,Configurable
,Provider<org.apache.kafka.streams.Topology>
,TopologyProvider
- Enclosing class:
- ConditionalStreamsApplication
@Component @ConditionalOn(components=Normalize.class) public static class ConditionalStreamsApplication.NormalizeStreamsTopology extends BaseComponentModule implements TopologyProvider
-
-
Constructor Summary
Constructors Constructor Description NormalizeStreamsTopology()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.kafka.streams.Topology
get()
Supplies a new Kafka StreamsTopology
instance.String
version()
Returns the version for thisTopology
.-
Methods inherited from class io.streamthoughts.azkarra.api.components.BaseComponentModule
configure, getComponentFactory, getConfiguration, setComponentFactory
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.streamthoughts.azkarra.api.components.ConfigurableComponentFactory
getAllComponents, getAllComponents, getAllComponents, getAllComponents, getComponent, getComponent, getComponent, getComponent
-
-
-
-
Method Detail
-
version
public String version()
Description copied from interface:TopologyProvider
Returns the version for thisTopology
.- Specified by:
version
in interfaceTopologyProvider
- Specified by:
version
in interfaceVersioned
- Returns:
- the string version.
-
get
public org.apache.kafka.streams.Topology get()
Description copied from interface:TopologyProvider
Supplies a new Kafka StreamsTopology
instance.- Specified by:
get
in interfaceProvider<org.apache.kafka.streams.Topology>
- Specified by:
get
in interfaceTopologyProvider
- Returns:
- the
Topology
instance.
-
-