Uses of Class
org.apache.flink.streaming.api.functions.co.KeyedCoProcessFunction.Context
-
-
Uses of KeyedCoProcessFunction.Context in org.apache.flink.runtime.asyncprocessing.functions
Methods in org.apache.flink.runtime.asyncprocessing.functions with parameters of type KeyedCoProcessFunction.Context Modifier and Type Method Description abstract org.apache.flink.util.function.ThrowingConsumer<IN1,Exception>DeclaringAsyncKeyedCoProcessFunction. declareProcess1(DeclarationContext context, KeyedCoProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)Declare a process for one element from the first of the connected streams.abstract org.apache.flink.util.function.ThrowingConsumer<IN2,Exception>DeclaringAsyncKeyedCoProcessFunction. declareProcess2(DeclarationContext context, KeyedCoProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)Declare a process for one element from the second of the connected streams.voidDeclaringAsyncKeyedCoProcessFunction. processElement1(IN1 value, KeyedCoProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)Override and finalize this method.voidDeclaringAsyncKeyedCoProcessFunction. processElement2(IN2 value, KeyedCoProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)Override and finalize this method. -
Uses of KeyedCoProcessFunction.Context in org.apache.flink.runtime.asyncprocessing.operators.co
Subclasses of KeyedCoProcessFunction.Context in org.apache.flink.runtime.asyncprocessing.operators.co Modifier and Type Class Description classAsyncKeyedCoProcessOperator.ContextImpl<K,IN1,IN2,OUT> -
Uses of KeyedCoProcessFunction.Context in org.apache.flink.streaming.api.functions.co
Subclasses of KeyedCoProcessFunction.Context in org.apache.flink.streaming.api.functions.co Modifier and Type Class Description classKeyedCoProcessFunction.OnTimerContextInformation available in an invocation of#onTimer(long, OnTimerContext, Collector).Methods in org.apache.flink.streaming.api.functions.co with parameters of type KeyedCoProcessFunction.Context Modifier and Type Method Description abstract voidKeyedCoProcessFunction. processElement1(IN1 value, KeyedCoProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)This method is called for each element in the first of the connected streams.abstract voidKeyedCoProcessFunction. processElement2(IN2 value, KeyedCoProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)This method is called for each element in the second of the connected streams.
-