Class SinkNode<K,V>
- java.lang.Object
-
- org.apache.kafka.streams.processor.internals.ProcessorNode<K,V>
-
- org.apache.kafka.streams.processor.internals.SinkNode<K,V>
-
public class SinkNode<K,V> extends ProcessorNode<K,V>
-
-
Field Summary
-
Fields inherited from class org.apache.kafka.streams.processor.internals.ProcessorNode
stateStores
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddChild(ProcessorNode<?,?> child)voidinit(InternalProcessorContext context)voidprocess(K key, V value)java.lang.StringtoString()java.lang.StringtoString(java.lang.String indent)-
Methods inherited from class org.apache.kafka.streams.processor.internals.ProcessorNode
children, close, isTerminalNode, name, processor, punctuate
-
-
-
-
Method Detail
-
addChild
public void addChild(ProcessorNode<?,?> child)
- Overrides:
addChildin classProcessorNode<K,V>- Throws:
java.lang.UnsupportedOperationException- if this method adds a child to a sink node
-
init
public void init(InternalProcessorContext context)
- Overrides:
initin classProcessorNode<K,V>
-
toString
public java.lang.String toString()
- Overrides:
toStringin classProcessorNode<K,V>- Returns:
- a string representation of this node, useful for debugging.
-
toString
public java.lang.String toString(java.lang.String indent)
- Overrides:
toStringin classProcessorNode<K,V>- Returns:
- a string representation of this node starting with the given indent, useful for debugging.
-
-