Uses of Class
org.apache.flink.streaming.api.functions.co.ProcessJoinFunction
-
Packages that use ProcessJoinFunction Package Description org.apache.flink.streaming.api.datastream org.apache.flink.streaming.api.operators.co -
-
Uses of ProcessJoinFunction in org.apache.flink.streaming.api.datastream
Methods in org.apache.flink.streaming.api.datastream with parameters of type ProcessJoinFunction Modifier and Type Method Description <OUT> SingleOutputStreamOperator<OUT>KeyedStream.IntervalJoined. process(ProcessJoinFunction<IN1,IN2,OUT> processJoinFunction)Completes the join operation with the given user function that is executed for each joined pair of elements.<OUT> SingleOutputStreamOperator<OUT>KeyedStream.IntervalJoined. process(ProcessJoinFunction<IN1,IN2,OUT> processJoinFunction, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outputType)Completes the join operation with the given user function that is executed for each joined pair of elements. -
Uses of ProcessJoinFunction in org.apache.flink.streaming.api.operators.co
Constructors in org.apache.flink.streaming.api.operators.co with parameters of type ProcessJoinFunction Constructor Description IntervalJoinOperator(long lowerBound, long upperBound, boolean lowerBoundInclusive, boolean upperBoundInclusive, org.apache.flink.util.OutputTag<T1> leftLateDataOutputTag, org.apache.flink.util.OutputTag<T2> rightLateDataOutputTag, org.apache.flink.api.common.typeutils.TypeSerializer<T1> leftTypeSerializer, org.apache.flink.api.common.typeutils.TypeSerializer<T2> rightTypeSerializer, ProcessJoinFunction<T1,T2,OUT> udf)Creates a new IntervalJoinOperator.
-