T - The type of the input elementspublic class TimestampsAndPeriodicWatermarksOperator<T> extends AbstractUdfStreamOperator<T,AssignerWithPeriodicWatermarks<T>> implements OneInputStreamOperator<T,T>, Triggerable
AbstractStreamOperator.CountingOutputuserFunctionchainingStrategy, LOG, metrics, output| Constructor and Description |
|---|
TimestampsAndPeriodicWatermarksOperator(AssignerWithPeriodicWatermarks<T> assigner) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
This method is called after all records have been added to the operators via the methods
OneInputStreamOperator.processElement(StreamRecord), or
TwoInputStreamOperator.processElement1(StreamRecord) and
TwoInputStreamOperator.processElement2(StreamRecord). |
void |
open()
This method is called immediately before any elements are processed, it should contain the
operator's initialization logic.
|
void |
processElement(StreamRecord<T> element)
Processes one element that arrived at this operator.
|
void |
processWatermark(Watermark mark)
Processes a
Watermark. |
void |
trigger(long timestamp)
This method is invoked with the timestamp for which the trigger was scheduled.
|
dispose, getUserFunction, getUserFunctionParameters, notifyOfCompletedCheckpoint, restoreState, setOutputType, setup, snapshotOperatorStategetChainingStrategy, getContainingTask, getCurrentProcessingTime, getExecutionConfig, getMetricGroup, getOperatorConfig, getPartitionedState, getPartitionedState, getRuntimeContext, getStateBackend, getUserCodeClassloader, registerTimer, setChainingStrategy, setKeyContext, setKeyContextElement1, setKeyContextElement2clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdispose, getChainingStrategy, getMetricGroup, notifyOfCompletedCheckpoint, restoreState, setChainingStrategy, setKeyContextElement1, setKeyContextElement2, setup, snapshotOperatorStatepublic TimestampsAndPeriodicWatermarksOperator(AssignerWithPeriodicWatermarks<T> assigner)
public void open()
throws Exception
AbstractStreamOperatorThe default implementation does nothing.
open in interface StreamOperator<T>open in class AbstractUdfStreamOperator<T,AssignerWithPeriodicWatermarks<T>>Exception - An exception in this method causes the operator to fail.public void processElement(StreamRecord<T> element) throws Exception
OneInputStreamOperatorprocessElement in interface OneInputStreamOperator<T,T>Exceptionpublic void trigger(long timestamp)
throws Exception
TriggerableIf the triggering is delayed for whatever reason (trigger timer was blocked, JVM stalled due to a garbage collection), the timestamp supplied to this function will still be the original timestamp for which the trigger was scheduled.
trigger in interface Triggerabletimestamp - The timestamp for which the trigger event was scheduled.Exceptionpublic void processWatermark(Watermark mark) throws Exception
OneInputStreamOperatorWatermark.
This method is guaranteed to not be called concurrently with other methods of the operator.processWatermark in interface OneInputStreamOperator<T,T>ExceptionWatermarkpublic void close()
throws Exception
AbstractStreamOperatorOneInputStreamOperator.processElement(StreamRecord), or
TwoInputStreamOperator.processElement1(StreamRecord) and
TwoInputStreamOperator.processElement2(StreamRecord).
The method is expected to flush all remaining buffered data. Exceptions during this flushing of buffered should be propagated, in order to cause the operation to be recognized asa failed, because the last data items are not processed properly.
close in interface StreamOperator<T>close in class AbstractUdfStreamOperator<T,AssignerWithPeriodicWatermarks<T>>Exception - An exception in this method causes the operator to fail.Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.