T - The type of the input elements@Deprecated public class ExtractTimestampsOperator<T> extends AbstractUdfStreamOperator<T,TimestampExtractor<T>> implements OneInputStreamOperator<T,T>, ProcessingTimeCallback
StreamOperator for extracting timestamps
from user elements and assigning them as the internal timestamp of the StreamRecord.AbstractStreamOperator.CountingOutput<OUT>userFunctionchainingStrategy, config, latencyStats, LOG, metrics, output, timeServiceManager| 构造器和说明 |
|---|
ExtractTimestampsOperator(TimestampExtractor<T> extractor)
已过时。
|
| 限定符和类型 | 方法和说明 |
|---|---|
void |
onProcessingTime(long timestamp)
已过时。
This method is invoked with the timestamp for which the trigger was scheduled.
|
void |
open()
已过时。
This method is called immediately before any elements are processed, it should contain the
operator's initialization logic, e.g. state initialization.
|
void |
processElement(StreamRecord<T> element)
已过时。
Processes one element that arrived at this operator.
|
void |
processWatermark(Watermark mark)
已过时。
Processes a
Watermark. |
close, dispose, getUserFunction, getUserFunctionParameters, initializeState, notifyCheckpointComplete, setOutputType, setup, snapshotStategetChainingStrategy, getContainingTask, getCurrentKey, getExecutionConfig, getInternalTimerService, getKeyedStateBackend, getKeyedStateStore, getMetricGroup, getOperatorConfig, getOperatorID, getOperatorName, getOperatorStateBackend, getOrCreateKeyedState, getPartitionedState, getPartitionedState, getProcessingTimeService, getRuntimeContext, getUserCodeClassloader, initializeState, numEventTimeTimers, numProcessingTimeTimers, prepareSnapshotPreBarrier, processLatencyMarker, processLatencyMarker1, processLatencyMarker2, processWatermark1, processWatermark2, reportOrForwardLatencyMarker, setChainingStrategy, setCurrentKey, setKeyContextElement1, setKeyContextElement2, snapshotStateclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitprocessLatencyMarkerclose, dispose, getChainingStrategy, getMetricGroup, getOperatorID, initializeState, prepareSnapshotPreBarrier, setChainingStrategy, setKeyContextElement1, setKeyContextElement2, snapshotStategetCurrentKey, setCurrentKeypublic ExtractTimestampsOperator(TimestampExtractor<T> extractor)
public void open()
throws Exception
AbstractStreamOperatorThe default implementation does nothing.
open 在接口中 StreamOperator<T>open 在类中 AbstractUdfStreamOperator<T,TimestampExtractor<T>>Exception - An exception in this method causes the operator to fail.public void processElement(StreamRecord<T> element) throws Exception
OneInputStreamOperatorprocessElement 在接口中 OneInputStreamOperator<T,T>Exceptionpublic void onProcessingTime(long timestamp)
throws Exception
ProcessingTimeCallbackIf 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.
onProcessingTime 在接口中 ProcessingTimeCallbacktimestamp - 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 在接口中 OneInputStreamOperator<T,T>processWatermark 在类中 AbstractStreamOperator<T>ExceptionWatermarkCopyright © 2014–2021 The Apache Software Foundation. All rights reserved.