@Internal public class CoStreamFlatMap<IN1,IN2,OUT> extends AbstractUdfStreamOperator<OUT,CoFlatMapFunction<IN1,IN2,OUT>> implements TwoInputStreamOperator<IN1,IN2,OUT>
userFunction
chainingStrategy, LOG, output
Constructor and Description |
---|
CoStreamFlatMap(CoFlatMapFunction<IN1,IN2,OUT> flatMapper) |
Modifier and Type | Method and Description |
---|---|
protected TimestampedCollector<OUT> |
getCollector() |
void |
open()
This method is called immediately before any elements are processed, it should contain the
operator's initialization logic.
|
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.
|
void |
processWatermark1(Watermark mark)
Processes a
Watermark that arrived on the first input of this two-input operator. |
void |
processWatermark2(Watermark mark)
Processes a
Watermark that arrived on the second input of this two-input operator. |
close, dispose, getUserFunction, getUserFunctionParameters, notifyOfCompletedCheckpoint, restoreState, setOutputType, setup, snapshotOperatorState
disableInputCopy, getChainingStrategy, getContainingTask, getExecutionConfig, getOperatorConfig, getPartitionedState, getPartitionedState, getRuntimeContext, getStateBackend, getUserCodeClassloader, isInputCopyingDisabled, registerTimer, setChainingStrategy, setKeyContext, setKeyContextElement1, setKeyContextElement2
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
close, dispose, getChainingStrategy, isInputCopyingDisabled, notifyOfCompletedCheckpoint, restoreState, setChainingStrategy, setKeyContextElement1, setKeyContextElement2, setup, snapshotOperatorState
public CoStreamFlatMap(CoFlatMapFunction<IN1,IN2,OUT> flatMapper)
public void open() throws Exception
AbstractStreamOperator
The default implementation does nothing.
open
in interface StreamOperator<OUT>
open
in class AbstractUdfStreamOperator<OUT,CoFlatMapFunction<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 processWatermark1(Watermark mark) throws Exception
TwoInputStreamOperator
Watermark
that arrived on the first input of this two-input operator.
This method is guaranteed to not be called concurrently with other methods of the operator.processWatermark1
in interface TwoInputStreamOperator<IN1,IN2,OUT>
Exception
Watermark
public void processWatermark2(Watermark mark) throws Exception
TwoInputStreamOperator
Watermark
that arrived on the second input of this two-input operator.
This method is guaranteed to not be called concurrently with other methods of the operator.processWatermark2
in interface TwoInputStreamOperator<IN1,IN2,OUT>
Exception
Watermark
protected TimestampedCollector<OUT> getCollector()
Copyright © 2014–2017 The Apache Software Foundation. All rights reserved.