Class KStreamTransform<K,V,K1,V1>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.internals.KStreamTransform<K,V,K1,V1>
-
- All Implemented Interfaces:
ProcessorSupplier<K,V>
public class KStreamTransform<K,V,K1,V1> extends java.lang.Object implements ProcessorSupplier<K,V>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
KStreamTransform.KStreamTransformProcessor<K1,V1,K2,V2>
-
Constructor Summary
Constructors Constructor Description KStreamTransform(TransformerSupplier<? super K,? super V,? extends KeyValue<? extends K1,? extends V1>> transformerSupplier)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Processor<K,V>
get()
Return a newProcessor
instance.
-
-
-
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
-
-