Class KStreamFlatTransform.KStreamFlatTransformProcessor<KIn,VIn,KOut,VOut>
- java.lang.Object
-
- org.apache.kafka.streams.processor.AbstractProcessor<KIn,VIn>
-
- org.apache.kafka.streams.kstream.internals.KStreamFlatTransform.KStreamFlatTransformProcessor<KIn,VIn,KOut,VOut>
-
- All Implemented Interfaces:
Processor<KIn,VIn>
- Enclosing class:
- KStreamFlatTransform<KIn,VIn,KOut,VOut>
public static class KStreamFlatTransform.KStreamFlatTransformProcessor<KIn,VIn,KOut,VOut> extends AbstractProcessor<KIn,VIn>
-
-
Constructor Summary
Constructors Constructor Description KStreamFlatTransformProcessor(Transformer<? super KIn,? super VIn,java.lang.Iterable<KeyValue<KOut,VOut>>> transformer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close this processor and clean up any resources.voidinit(ProcessorContext context)Initialize this processor with the given context.voidprocess(KIn key, VIn value)Process the record with the given key and value.-
Methods inherited from class org.apache.kafka.streams.processor.AbstractProcessor
context
-
-
-
-
Method Detail
-
init
public void init(ProcessorContext context)
Description copied from interface:ProcessorInitialize this processor with the given context. The framework ensures this is called once per processor when the topology that contains it is initialized. When the framework is done with the processor,Processor.close()will be called on it; the framework may later re-use the processor by calling#init()again.The provided
contextcan be used to access topology and record meta data, toschedulea method to becalled periodicallyand to access attachedStateStores.
-
process
public void process(KIn key, VIn value)
Description copied from interface:ProcessorProcess the record with the given key and value.- Parameters:
key- the key for the recordvalue- the value for the record
-
close
public void close()
Description copied from class:AbstractProcessorClose this processor and clean up any resources.This method does nothing by default; if desired, subclasses should override it with custom functionality.
-
-