KS
- The key type of the input keyed stream.IN1
- The input type of the keyed (non-broadcast) side.IN2
- The input type of the broadcast side.OUT
- The output type of the operator.@Internal public class CoBroadcastWithKeyedOperator<KS,IN1,IN2,OUT> extends AbstractUdfStreamOperator<OUT,KeyedBroadcastProcessFunction<KS,IN1,IN2,OUT>> implements TwoInputStreamOperator<IN1,IN2,OUT>, Triggerable<KS,VoidNamespace>
TwoInputStreamOperator
for executing KeyedBroadcastProcessFunctions
.userFunction
chainingStrategy, config, latencyStats, LOG, metrics, output, processingTimeService
Constructor and Description |
---|
CoBroadcastWithKeyedOperator(KeyedBroadcastProcessFunction<KS,IN1,IN2,OUT> function,
List<MapStateDescriptor<?,?>> broadcastStateDescriptors) |
Modifier and Type | Method and Description |
---|---|
void |
onEventTime(InternalTimer<KS,VoidNamespace> timer)
Invoked when an event-time timer fires.
|
void |
onProcessingTime(InternalTimer<KS,VoidNamespace> timer)
Invoked when a processing-time timer fires.
|
void |
open()
This method is called immediately before any elements are processed, it should contain the
operator's initialization logic, e.g.
|
void |
processElement1(StreamRecord<IN1> element)
Processes one element that arrived on the first input of this two-input operator.
|
void |
processElement2(StreamRecord<IN2> element)
Processes one element that arrived on the second input of this two-input operator.
|
close, finish, getUserFunction, getUserFunctionParameters, initializeState, notifyCheckpointAborted, notifyCheckpointComplete, setOutputType, setup, snapshotState
getChainingStrategy, getContainingTask, getCurrentKey, getExecutionConfig, getInternalTimerService, getKeyedStateBackend, getKeyedStateStore, getMetricGroup, getOperatorConfig, getOperatorID, getOperatorName, getOperatorStateBackend, getOrCreateKeyedState, getPartitionedState, getPartitionedState, getProcessingTimeService, getRuntimeContext, getTimeServiceManager, getUserCodeClassloader, hasKeyContext1, hasKeyContext2, initializeState, isUsingCustomRawKeyedState, prepareSnapshotPreBarrier, processLatencyMarker, processLatencyMarker1, processLatencyMarker2, processWatermark, processWatermark1, processWatermark2, processWatermarkStatus, processWatermarkStatus1, processWatermarkStatus2, reportOrForwardLatencyMarker, setChainingStrategy, setCurrentKey, setKeyContextElement1, setKeyContextElement2, setProcessingTimeService, snapshotState
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
processLatencyMarker1, processLatencyMarker2, processWatermark1, processWatermark2, processWatermarkStatus1, processWatermarkStatus2
close, finish, getMetricGroup, getOperatorID, initializeState, prepareSnapshotPreBarrier, setKeyContextElement1, setKeyContextElement2, snapshotState
notifyCheckpointAborted, notifyCheckpointComplete
getCurrentKey, setCurrentKey
hasKeyContext
public CoBroadcastWithKeyedOperator(KeyedBroadcastProcessFunction<KS,IN1,IN2,OUT> function, List<MapStateDescriptor<?,?>> broadcastStateDescriptors)
public void open() throws Exception
AbstractStreamOperator
The default implementation does nothing.
open
in interface StreamOperator<OUT>
open
in class AbstractUdfStreamOperator<OUT,KeyedBroadcastProcessFunction<KS,IN1,IN2,OUT>>
Exception
- An exception in this method causes the operator to fail.public void processElement1(StreamRecord<IN1> element) throws Exception
TwoInputStreamOperator
processElement1
in interface TwoInputStreamOperator<IN1,IN2,OUT>
Exception
public void processElement2(StreamRecord<IN2> element) throws Exception
TwoInputStreamOperator
processElement2
in interface TwoInputStreamOperator<IN1,IN2,OUT>
Exception
public void onEventTime(InternalTimer<KS,VoidNamespace> timer) throws Exception
Triggerable
onEventTime
in interface Triggerable<KS,VoidNamespace>
Exception
public void onProcessingTime(InternalTimer<KS,VoidNamespace> timer) throws Exception
Triggerable
onProcessingTime
in interface Triggerable<KS,VoidNamespace>
Exception
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.