Package org.apache.flink.cep.functions
Interface PatternProcessFunction.Context
- All Superinterfaces:
TimeContext
- Enclosing class:
- PatternProcessFunction<IN,
OUT>
Gives access to time related characteristics as well as enables emitting elements to side
outputs.
-
Method Summary
Modifier and TypeMethodDescription<X> voidoutput(org.apache.flink.util.OutputTag<X> outputTag, X value) Emits a record to the side output identified by theOutputTag.Methods inherited from interface org.apache.flink.cep.time.TimeContext
currentProcessingTime, timestamp
-
Method Details
-
output
<X> void output(org.apache.flink.util.OutputTag<X> outputTag, X value) Emits a record to the side output identified by theOutputTag.- Parameters:
outputTag- theOutputTagthat identifies the side output to emit to.value- The record to emit.
-