Uses of Interface
org.apache.flink.streaming.api.operators.TwoInputStreamOperator
-
-
Uses of TwoInputStreamOperator in org.apache.flink.streaming.api.datastream
Methods in org.apache.flink.streaming.api.datastream with parameters of type TwoInputStreamOperator Modifier and Type Method Description <R> SingleOutputStreamOperator<R>ConnectedStreams. transform(String functionName, org.apache.flink.api.common.typeinfo.TypeInformation<R> outTypeInfo, TwoInputStreamOperator<IN1,IN2,R> operator) -
Uses of TwoInputStreamOperator in org.apache.flink.streaming.api.operators.co
-
Uses of TwoInputStreamOperator in org.apache.flink.streaming.api.transformations
Methods in org.apache.flink.streaming.api.transformations that return TwoInputStreamOperator Modifier and Type Method Description TwoInputStreamOperator<IN1,IN2,OUT>TwoInputTransformation. getOperator()Constructors in org.apache.flink.streaming.api.transformations with parameters of type TwoInputStreamOperator Constructor Description TwoInputTransformation(org.apache.flink.api.dag.Transformation<IN1> input1, org.apache.flink.api.dag.Transformation<IN2> input2, String name, TwoInputStreamOperator<IN1,IN2,OUT> operator, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outputType, int parallelism)Creates a newTwoInputTransformationfrom the given inputs and operator.TwoInputTransformation(org.apache.flink.api.dag.Transformation<IN1> input1, org.apache.flink.api.dag.Transformation<IN2> input2, String name, TwoInputStreamOperator<IN1,IN2,OUT> operator, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outputType, int parallelism, boolean parallelismConfigured) -
Uses of TwoInputStreamOperator in org.apache.flink.streaming.runtime.io
Methods in org.apache.flink.streaming.runtime.io with parameters of type TwoInputStreamOperator Modifier and Type Method Description static <IN1,IN2>
StreamMultipleInputProcessorStreamTwoInputProcessorFactory. create(TaskInvokable ownerTask, CheckpointedInputGate[] checkpointedInputGates, IOManager ioManager, MemoryManager memoryManager, TaskIOMetricGroup taskIOMetricGroup, TwoInputStreamOperator<IN1,IN2,?> streamOperator, WatermarkGauge input1WatermarkGauge, WatermarkGauge input2WatermarkGauge, OperatorChain<?,?> operatorChain, StreamConfig streamConfig, org.apache.flink.configuration.Configuration taskManagerConfig, org.apache.flink.configuration.Configuration jobConfig, org.apache.flink.api.common.ExecutionConfig executionConfig, ClassLoader userClassloader, org.apache.flink.metrics.Counter numRecordsIn, InflightDataRescalingDescriptor inflightDataRescalingDescriptor, Function<Integer,StreamPartitioner<?>> gatePartitioners, org.apache.flink.api.common.TaskInfo taskInfo, StreamTask.CanEmitBatchOfRecordsChecker canEmitBatchOfRecords)static <T> org.apache.flink.util.function.ThrowingConsumer<StreamRecord<T>,Exception>RecordProcessorUtils. getRecordProcessor1(TwoInputStreamOperator<T,?,?> operator)Get record processor for the first input ofTwoInputStreamOperator, which will omit call ofStreamOperator.setKeyContextElement1(org.apache.flink.streaming.runtime.streamrecord.StreamRecord<?>)if it doesn't have key context.static <T> org.apache.flink.util.function.ThrowingConsumer<StreamRecord<T>,Exception>RecordProcessorUtils. getRecordProcessor2(TwoInputStreamOperator<?,T,?> operator)Get record processor for the second input ofTwoInputStreamOperator, which will omit call ofStreamOperator.setKeyContextElement2(org.apache.flink.streaming.runtime.streamrecord.StreamRecord<?>)if it doesn't have key context.
-