Class InternalTopologyBuilder.TopologyDescription
- java.lang.Object
-
- org.apache.kafka.streams.processor.internals.InternalTopologyBuilder.TopologyDescription
-
- All Implemented Interfaces:
TopologyDescription
- Enclosing class:
- InternalTopologyBuilder
public static final class InternalTopologyBuilder.TopologyDescription extends java.lang.Object implements TopologyDescription
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.kafka.streams.TopologyDescription
TopologyDescription.GlobalStore, TopologyDescription.Node, TopologyDescription.Processor, TopologyDescription.Sink, TopologyDescription.Source, TopologyDescription.Subtopology
-
-
Constructor Summary
Constructors Constructor Description TopologyDescription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddGlobalStore(TopologyDescription.GlobalStore globalStore)voidaddSubtopology(TopologyDescription.Subtopology subtopology)booleanequals(java.lang.Object o)java.util.Set<TopologyDescription.GlobalStore>globalStores()All global stores of the represented topology.inthashCode()java.util.Set<TopologyDescription.Subtopology>subtopologies()All sub-topologies of the represented topology.java.lang.StringtoString()
-
-
-
Method Detail
-
addSubtopology
public void addSubtopology(TopologyDescription.Subtopology subtopology)
-
addGlobalStore
public void addGlobalStore(TopologyDescription.GlobalStore globalStore)
-
subtopologies
public java.util.Set<TopologyDescription.Subtopology> subtopologies()
Description copied from interface:TopologyDescriptionAll sub-topologies of the represented topology.- Specified by:
subtopologiesin interfaceTopologyDescription- Returns:
- set of all sub-topologies
-
globalStores
public java.util.Set<TopologyDescription.GlobalStore> globalStores()
Description copied from interface:TopologyDescriptionAll global stores of the represented topology.- Specified by:
globalStoresin interfaceTopologyDescription- Returns:
- set of all global stores
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-