Uses of Interface
org.apache.flink.streaming.api.functions.co.CoFlatMapFunction
-
Packages that use CoFlatMapFunction Package Description org.apache.flink.streaming.api.datastream org.apache.flink.streaming.api.functions.co org.apache.flink.streaming.api.operators.co -
-
Uses of CoFlatMapFunction in org.apache.flink.streaming.api.datastream
Methods in org.apache.flink.streaming.api.datastream with parameters of type CoFlatMapFunction Modifier and Type Method Description <R> SingleOutputStreamOperator<R>
ConnectedStreams. flatMap(CoFlatMapFunction<IN1,IN2,R> coFlatMapper)
Applies a CoFlatMap transformation on aConnectedStreams
and maps the output to a common type.<R> SingleOutputStreamOperator<R>
ConnectedStreams. flatMap(CoFlatMapFunction<IN1,IN2,R> coFlatMapper, TypeInformation<R> outputType)
Applies a CoFlatMap transformation on aConnectedStreams
and maps the output to a common type. -
Uses of CoFlatMapFunction in org.apache.flink.streaming.api.functions.co
Classes in org.apache.flink.streaming.api.functions.co that implement CoFlatMapFunction Modifier and Type Class Description class
RichCoFlatMapFunction<IN1,IN2,OUT>
A RichCoFlatMapFunction represents a FlatMap transformation with two different input types. -
Uses of CoFlatMapFunction in org.apache.flink.streaming.api.operators.co
Constructors in org.apache.flink.streaming.api.operators.co with parameters of type CoFlatMapFunction Constructor Description CoStreamFlatMap(CoFlatMapFunction<IN1,IN2,OUT> flatMapper)
-