public abstract class ProcessJoinFunction.Context extends Object
ProcessJoinFunction.processElement(Object, Object, Context, Collector). It gives access to the timestamps of the
left element in the joined pair, the right one, and that of the joined pair. In addition, this context
allows to emit elements on a side output.| 构造器和说明 |
|---|
Context() |
| 限定符和类型 | 方法和说明 |
|---|---|
abstract long |
getLeftTimestamp() |
abstract long |
getRightTimestamp() |
abstract long |
getTimestamp() |
abstract <X> void |
output(org.apache.flink.util.OutputTag<X> outputTag,
X value)
Emits a record to the side output identified by the
OutputTag. |
public abstract long getLeftTimestamp()
public abstract long getRightTimestamp()
public abstract long getTimestamp()
public abstract <X> void output(org.apache.flink.util.OutputTag<X> outputTag,
X value)
OutputTag.outputTag - The output tag that identifies the side output to emit tovalue - The record to emitCopyright © 2014–2021 The Apache Software Foundation. All rights reserved.