void writeToTopology(
InternalTopologyBuilder topologyBuilder)
KTableKTableJoinNode
KTableKTableJoinNode
is a concrete StreamsGraphNode (as a BaseJoinProcessorNode) that is created (using KTableKTableJoinNodeBuilder.build method) for KTableImpl.join, KTableImpl.leftJoin and KTableImpl.outerJoin operators.
In other words, KTableKTableJoinNode
represents KTableImpl.join, KTableImpl.leftJoin and KTableImpl.outerJoin operators.
Creating KTableKTableJoinNode Instance
KTableKTableJoinNode
takes the following to be created:
-
StoreBuilder of TimestampedKeyValueStore (
StoreBuilder<TimestampedKeyValueStore<K, VR>>
)
writeToTopology
Method
Note
|
writeToTopology is part of the StreamsGraphNode Contract to…FIXME.
|
writeToTopology
…FIXME
Creating KTableKTableJoinNode — build
Method
KTableKTableJoinNode<K, V1, V2, VR> build()
build
…FIXME
Note
|
build is used exclusively when KTableImpl is requested to doJoin (for KTableImpl.join, KTableImpl.leftJoin and KTableImpl.outerJoin operators).
|