Class KStreamFlatTransform<KIn,VIn,KOut,VOut>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.internals.KStreamFlatTransform<KIn,VIn,KOut,VOut>
-
- All Implemented Interfaces:
ConnectedStoreProvider,ProcessorSupplier<KIn,VIn>
public class KStreamFlatTransform<KIn,VIn,KOut,VOut> extends java.lang.Object implements ProcessorSupplier<KIn,VIn>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classKStreamFlatTransform.KStreamFlatTransformProcessor<KIn,VIn,KOut,VOut>
-
Constructor Summary
Constructors Constructor Description KStreamFlatTransform(TransformerSupplier<? super KIn,? super VIn,java.lang.Iterable<KeyValue<KOut,VOut>>> transformerSupplier)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Processor<KIn,VIn>get()Return a newProcessorinstance.java.util.Set<StoreBuilder<?>>stores()
-
-
-
Method Detail
-
get
public Processor<KIn,VIn> get()
Description copied from interface:ProcessorSupplierReturn a newProcessorinstance.- Specified by:
getin interfaceProcessorSupplier<KIn,VIn>- Returns:
- a new
Processorinstance
-
stores
public java.util.Set<StoreBuilder<?>> stores()
- Specified by:
storesin interfaceConnectedStoreProvider- Returns:
- the state stores to be connected and added, or null if no stores should be automatically connected and added.
-
-