Interface KastCoProcessorContext
-
public interface KastCoProcessorContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidoutput(KastOutputTag sideOutputTag, KastRow kRow)Emits a record to the side output identified by theKastOutputTag.Longtimestamp()Timestamp of the element currently being processed or timestamp of a firing timer.
-
-
-
Method Detail
-
timestamp
Long timestamp()
Timestamp of the element currently being processed or timestamp of a firing timer.This might be
null, for example if the time characteristic of your program is set toTimeCharacteristic.ProcessingTime.
-
output
void output(KastOutputTag sideOutputTag, KastRow kRow)
Emits a record to the side output identified by theKastOutputTag.- Parameters:
sideOutputTag- theKastOutputTagthat identifies the side output to emit to.kRow- The record to emit.
-
-