Uses of Class
org.apache.flink.streaming.api.functions.KeyedProcessFunction.Context
-
Packages that use KeyedProcessFunction.Context Package Description org.apache.flink.runtime.asyncprocessing.functions org.apache.flink.streaming.api.functions -
-
Uses of KeyedProcessFunction.Context in org.apache.flink.runtime.asyncprocessing.functions
Methods in org.apache.flink.runtime.asyncprocessing.functions with parameters of type KeyedProcessFunction.Context Modifier and Type Method Description abstract org.apache.flink.util.function.ThrowingConsumer<I,Exception>
DeclaringAsyncKeyedProcessFunction. declareProcess(DeclarationContext context, KeyedProcessFunction.Context ctx, org.apache.flink.util.Collector<O> out)
Declare a process for one element from the input stream.void
DeclaringAsyncKeyedProcessFunction. processElement(I value, KeyedProcessFunction.Context ctx, org.apache.flink.util.Collector<O> out)
Override and finalize this method. -
Uses of KeyedProcessFunction.Context in org.apache.flink.streaming.api.functions
Subclasses of KeyedProcessFunction.Context in org.apache.flink.streaming.api.functions Modifier and Type Class Description class
KeyedProcessFunction.OnTimerContext
Information available in an invocation of#onTimer(long, OnTimerContext, Collector)
.Methods in org.apache.flink.streaming.api.functions with parameters of type KeyedProcessFunction.Context Modifier and Type Method Description abstract void
KeyedProcessFunction. processElement(I value, KeyedProcessFunction.Context ctx, org.apache.flink.util.Collector<O> out)
Process one element from the input stream.
-