Class FinishedOnRestoreInput<IN>
java.lang.Object
org.apache.flink.streaming.runtime.tasks.FinishedOnRestoreInput<IN>
- All Implemented Interfaces:
Input<IN>
A fake
Input for finished on restore tasks.-
Constructor Summary
ConstructorsConstructorDescriptionFinishedOnRestoreInput(RecordWriterOutput<?>[] streamOutputs, int inputCount) -
Method Summary
Modifier and TypeMethodDescriptionvoidprocessElement(StreamRecord<IN> element) Processes one element that arrived on this input of theMultipleInputStreamOperator.voidprocessLatencyMarker(LatencyMarker latencyMarker) Processes aLatencyMarkerthat arrived on the first input of this two-input operator.voidprocessWatermark(Watermark watermark) Processes aWatermarkthat arrived on the first input of this two-input operator.voidprocessWatermarkStatus(WatermarkStatus watermarkStatus) Processes aWatermarkStatusthat arrived on this input of theMultipleInputStreamOperator.voidsetKeyContextElement(StreamRecord<IN> record) Set the correct key context before processing therecord.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.flink.streaming.api.operators.Input
processRecordAttributes, processWatermark
-
Constructor Details
-
FinishedOnRestoreInput
-
-
Method Details
-
processElement
Description copied from interface:InputProcesses one element that arrived on this input of theMultipleInputStreamOperator. This method is guaranteed to not be called concurrently with other methods of the operator.- Specified by:
processElementin interfaceInput<IN>- Throws:
Exception
-
processWatermark
Description copied from interface:InputProcesses aWatermarkthat 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.- Specified by:
processWatermarkin interfaceInput<IN>- See Also:
-
processWatermarkStatus
Description copied from interface:InputProcesses aWatermarkStatusthat arrived on this input of theMultipleInputStreamOperator. This method is guaranteed to not be called concurrently with other methods of the operator.- Specified by:
processWatermarkStatusin interfaceInput<IN>- Throws:
Exception- See Also:
-
processLatencyMarker
Description copied from interface:InputProcesses aLatencyMarkerthat 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.- Specified by:
processLatencyMarkerin interfaceInput<IN>- Throws:
Exception- See Also:
-
setKeyContextElement
Description copied from interface:InputSet the correct key context before processing therecord. Used for example to extract key from therecordand pass that key to the state backends. This method is guaranteed to not be called concurrently with other methods of the operator.- Specified by:
setKeyContextElementin interfaceInput<IN>- Throws:
Exception
-