Uses of Class
org.apache.flink.streaming.api.functions.KeyedProcessFunction.OnTimerContext
-
Packages that use KeyedProcessFunction.OnTimerContext Package Description org.apache.flink.runtime.asyncprocessing.functions org.apache.flink.streaming.api.functions -
-
Uses of KeyedProcessFunction.OnTimerContext in org.apache.flink.runtime.asyncprocessing.functions
Methods in org.apache.flink.runtime.asyncprocessing.functions with parameters of type KeyedProcessFunction.OnTimerContext Modifier and Type Method Description org.apache.flink.util.function.ThrowingConsumer<Long,Exception>
DeclaringAsyncKeyedProcessFunction. declareOnTimer(DeclarationContext context, KeyedProcessFunction.OnTimerContext ctx, org.apache.flink.util.Collector<O> out)
Declare a procedure which is called when a timer set usingTimerService
fires.void
DeclaringAsyncKeyedProcessFunction. onTimer(long timestamp, KeyedProcessFunction.OnTimerContext ctx, org.apache.flink.util.Collector<O> out)
Override and finalize this method. -
Uses of KeyedProcessFunction.OnTimerContext in org.apache.flink.streaming.api.functions
Methods in org.apache.flink.streaming.api.functions with parameters of type KeyedProcessFunction.OnTimerContext Modifier and Type Method Description void
KeyedProcessFunction. onTimer(long timestamp, KeyedProcessFunction.OnTimerContext ctx, org.apache.flink.util.Collector<O> out)
Called when a timer set usingTimerService
fires.
-