Class ContextAwareTopologySupplier.DelegateContextTopologyProvider
- java.lang.Object
-
- io.streamthoughts.azkarra.runtime.context.internal.ContextAwareTopologySupplier.DelegateContextTopologyProvider
-
- All Implemented Interfaces:
Versioned
,Provider<org.apache.kafka.streams.Topology>
,TopologyProvider
- Enclosing class:
- ContextAwareTopologySupplier
public static class ContextAwareTopologySupplier.DelegateContextTopologyProvider extends Object implements TopologyProvider
A delegatingTopologyProvider
which is notConfigurable
.
-
-
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
.
-
-
-
Method Detail
-
version
public String version()
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()
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.
-
-