Uses of Class
org.apache.flink.streaming.api.functions.co.KeyedBroadcastProcessFunction
-
Packages that use KeyedBroadcastProcessFunction Package Description org.apache.flink.streaming.api.datastream org.apache.flink.streaming.api.operators.co org.apache.flink.streaming.api.transformations -
-
Uses of KeyedBroadcastProcessFunction in org.apache.flink.streaming.api.datastream
Methods in org.apache.flink.streaming.api.datastream with parameters of type KeyedBroadcastProcessFunction Modifier and Type Method Description <KEY,OUT>
SingleOutputStreamOperator<OUT>BroadcastConnectedStream. process(KeyedBroadcastProcessFunction<KEY,IN1,IN2,OUT> function)Assumes as inputs aBroadcastStreamand aKeyedStreamand applies the givenKeyedBroadcastProcessFunctionon them, thereby creating a transformed output stream.<KEY,OUT>
SingleOutputStreamOperator<OUT>BroadcastConnectedStream. process(KeyedBroadcastProcessFunction<KEY,IN1,IN2,OUT> function, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outTypeInfo)Assumes as inputs aBroadcastStreamand aKeyedStreamand applies the givenKeyedBroadcastProcessFunctionon them, thereby creating a transformed output stream. -
Uses of KeyedBroadcastProcessFunction in org.apache.flink.streaming.api.operators.co
Constructors in org.apache.flink.streaming.api.operators.co with parameters of type KeyedBroadcastProcessFunction Constructor Description BatchCoBroadcastWithKeyedOperator(KeyedBroadcastProcessFunction<KS,IN1,IN2,OUT> function, List<org.apache.flink.api.common.state.MapStateDescriptor<?,?>> broadcastStateDescriptors)CoBroadcastWithKeyedOperator(KeyedBroadcastProcessFunction<KS,IN1,IN2,OUT> function, List<org.apache.flink.api.common.state.MapStateDescriptor<?,?>> broadcastStateDescriptors) -
Uses of KeyedBroadcastProcessFunction in org.apache.flink.streaming.api.transformations
Methods in org.apache.flink.streaming.api.transformations that return KeyedBroadcastProcessFunction Modifier and Type Method Description KeyedBroadcastProcessFunction<KEY,IN1,IN2,OUT>KeyedBroadcastStateTransformation. getUserFunction()Constructors in org.apache.flink.streaming.api.transformations with parameters of type KeyedBroadcastProcessFunction Constructor Description KeyedBroadcastStateTransformation(String name, org.apache.flink.api.dag.Transformation<IN1> inputStream, org.apache.flink.api.dag.Transformation<IN2> broadcastStream, KeyedBroadcastProcessFunction<KEY,IN1,IN2,OUT> userFunction, List<org.apache.flink.api.common.state.MapStateDescriptor<?,?>> broadcastStateDescriptors, org.apache.flink.api.common.typeinfo.TypeInformation<KEY> keyType, org.apache.flink.api.java.functions.KeySelector<IN1,KEY> keySelector, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outTypeInfo, int parallelism, boolean parallelismConfigured)
-