Class KStreamPrint<K,V>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.internals.KStreamPrint<K,V>
-
- All Implemented Interfaces:
ProcessorSupplier<K,V>
public class KStreamPrint<K,V> extends java.lang.Object implements ProcessorSupplier<K,V>
-
-
Constructor Summary
Constructors Constructor Description KStreamPrint(ForeachAction<K,V> action)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Processor<K,V>
get()
Return a newProcessor
instance.
-
-
-
Constructor Detail
-
KStreamPrint
public KStreamPrint(ForeachAction<K,V> action)
-
-
Method Detail
-
get
public Processor<K,V> get()
Description copied from interface:ProcessorSupplier
Return a newProcessor
instance.- Specified by:
get
in interfaceProcessorSupplier<K,V>
- Returns:
- a new
Processor
instance
-
-