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 void
addGlobalStore(TopologyDescription.GlobalStore globalStore)
void
addSubtopology(TopologyDescription.Subtopology subtopology)
boolean
equals(java.lang.Object o)
java.util.Set<TopologyDescription.GlobalStore>
globalStores()
All global stores of the represented topology.int
hashCode()
java.util.Set<TopologyDescription.Subtopology>
subtopologies()
All sub-topologies of the represented topology.java.lang.String
toString()
-
-
-
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:TopologyDescription
All sub-topologies of the represented topology.- Specified by:
subtopologies
in interfaceTopologyDescription
- Returns:
- set of all sub-topologies
-
globalStores
public java.util.Set<TopologyDescription.GlobalStore> globalStores()
Description copied from interface:TopologyDescription
All global stores of the represented topology.- Specified by:
globalStores
in interfaceTopologyDescription
- Returns:
- set of all global stores
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-