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
userFunction
chainingStrategy, config, latencyStats, LOG, metrics, output, timeServiceManager
Constructor and Description |
---|
ExtractTimestampsOperator(TimestampExtractor<T> extractor)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
onProcessingTime(long timestamp)
Deprecated.
This method is invoked with the timestamp for which the trigger was scheduled.
|
void |
open()
Deprecated.
This method is called immediately before any elements are processed, it should contain the
operator's initialization logic, e.g.
|
void |
processElement(StreamRecord<T> element)
Deprecated.
Processes one element that arrived at this operator.
|
void |
processWatermark(Watermark mark)
Deprecated.
Processes a
Watermark . |
close, dispose, getUserFunction, getUserFunctionParameters, initializeState, notifyCheckpointComplete, setOutputType, setup, snapshotState
getChainingStrategy, getContainingTask, getCurrentKey, getExecutionConfig, getInternalTimerService, getKeyedStateBackend, getKeyedStateStore, getMetricGroup, getOperatorConfig, getOperatorID, getOperatorName, getOperatorStateBackend, getOrCreateKeyedState, getPartitionedState, getPartitionedState, getProcessingTimeService, getRuntimeContext, getUserCodeClassloader, initializeState, numEventTimeTimers, numProcessingTimeTimers, processLatencyMarker, processLatencyMarker1, processLatencyMarker2, processWatermark1, processWatermark2, reportOrForwardLatencyMarker, setChainingStrategy, setCurrentKey, setKeyContextElement1, setKeyContextElement2, snapshotState
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
processLatencyMarker
close, dispose, getChainingStrategy, getMetricGroup, getOperatorID, initializeState, setChainingStrategy, setKeyContextElement1, setKeyContextElement2, setup, snapshotState
notifyCheckpointComplete
getCurrentKey, setCurrentKey
public ExtractTimestampsOperator(TimestampExtractor<T> extractor)
public void open() throws Exception
AbstractStreamOperator
The default implementation does nothing.
open
in interface StreamOperator<T>
open
in class AbstractUdfStreamOperator<T,TimestampExtractor<T>>
Exception
- An exception in this method causes the operator to fail.public void processElement(StreamRecord<T> element) throws Exception
OneInputStreamOperator
processElement
in interface OneInputStreamOperator<T,T>
Exception
public void onProcessingTime(long timestamp) throws Exception
ProcessingTimeCallback
If 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
in interface ProcessingTimeCallback
timestamp
- The timestamp for which the trigger event was scheduled.Exception
public void processWatermark(Watermark mark) throws Exception
OneInputStreamOperator
Watermark
.
This method is guaranteed to not be called concurrently with other methods of the operator.processWatermark
in interface OneInputStreamOperator<T,T>
processWatermark
in class AbstractStreamOperator<T>
Exception
Watermark
Copyright © 2014–2019 The Apache Software Foundation. All rights reserved.