public interface TopologyDescription
topology
.
The nodes of a topology are grouped into sub-topologies
if they are connected.
In contrast, two sub-topologies are not connected but can be linked to each other via topics, i.e., if one
sub-topology writes
into a topic and another sub-topology
reads
from the same topic.
When KafkaStreams.start()
is called, different sub-topologies will be constructed and executed as independent
tasks
.
Modifier and Type | Interface and Description |
---|---|
static interface |
TopologyDescription.GlobalStore
Represents a
global store . |
static interface |
TopologyDescription.Node
A node of a topology.
|
static interface |
TopologyDescription.Processor
A processor node of a topology.
|
static interface |
TopologyDescription.Sink
A sink node of a topology.
|
static interface |
TopologyDescription.Source
A source node of a topology.
|
static interface |
TopologyDescription.Subtopology
A connected sub-graph of a
Topology . |
Modifier and Type | Method and Description |
---|---|
java.util.Set<TopologyDescription.GlobalStore> |
globalStores()
All global stores of the represented topology.
|
java.util.Set<TopologyDescription.Subtopology> |
subtopologies()
All sub-topologies of the represented topology.
|
java.util.Set<TopologyDescription.Subtopology> subtopologies()
java.util.Set<TopologyDescription.GlobalStore> globalStores()