public static class AbstractStreamOperator.CountingOutput<OUT> extends Object implements Output<StreamRecord<OUT>>
Output that updates metrics on the number of emitted elements.| 构造器和说明 |
|---|
CountingOutput(Output<StreamRecord<OUT>> output,
org.apache.flink.metrics.Counter counter) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
close() |
<X> void |
collect(org.apache.flink.util.OutputTag<X> outputTag,
StreamRecord<X> record)
Emits a record the side output identified by the given
OutputTag. |
void |
collect(StreamRecord<OUT> record) |
void |
emitLatencyMarker(LatencyMarker latencyMarker) |
void |
emitWatermark(Watermark mark)
Emits a
Watermark from an operator. |
public CountingOutput(Output<StreamRecord<OUT>> output, org.apache.flink.metrics.Counter counter)
public void emitWatermark(Watermark mark)
OutputWatermark from an operator. This watermark is broadcast to all downstream
operators.
A watermark specifies that no element with a timestamp lower or equal to the watermark timestamp will be emitted in the future.
emitWatermark 在接口中 Output<StreamRecord<OUT>>public void emitLatencyMarker(LatencyMarker latencyMarker)
emitLatencyMarker 在接口中 Output<StreamRecord<OUT>>public void collect(StreamRecord<OUT> record)
collect 在接口中 org.apache.flink.util.Collector<StreamRecord<OUT>>public <X> void collect(org.apache.flink.util.OutputTag<X> outputTag,
StreamRecord<X> record)
OutputOutputTag.collect 在接口中 Output<StreamRecord<OUT>>record - The record to collect.public void close()
close 在接口中 org.apache.flink.util.Collector<StreamRecord<OUT>>Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.