Class KeyedProcessFunction.OnTimerContext
- java.lang.Object
-
- org.apache.flink.streaming.api.functions.KeyedProcessFunction.Context
-
- org.apache.flink.streaming.api.functions.KeyedProcessFunction.OnTimerContext
-
- Enclosing class:
- KeyedProcessFunction<K,I,O>
public abstract class KeyedProcessFunction.OnTimerContext extends KeyedProcessFunction.Context
Information available in an invocation of#onTimer(long, OnTimerContext, Collector)
.
-
-
Constructor Summary
Constructors Constructor Description OnTimerContext()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract K
getCurrentKey()
Get key of the firing timer.abstract TimeDomain
timeDomain()
TheTimeDomain
of the firing timer.-
Methods inherited from class org.apache.flink.streaming.api.functions.KeyedProcessFunction.Context
output, timerService, timestamp
-
-
-
-
Method Detail
-
timeDomain
public abstract TimeDomain timeDomain()
TheTimeDomain
of the firing timer.
-
getCurrentKey
public abstract K getCurrentKey()
Get key of the firing timer.- Specified by:
getCurrentKey
in classKeyedProcessFunction.Context
-
-