Class KeyedCoProcessFunction.OnTimerContext
- java.lang.Object
-
- org.apache.flink.streaming.api.functions.co.KeyedCoProcessFunction.Context
-
- org.apache.flink.streaming.api.functions.co.KeyedCoProcessFunction.OnTimerContext
-
- Enclosing class:
- KeyedCoProcessFunction<K,IN1,IN2,OUT>
public abstract class KeyedCoProcessFunction.OnTimerContext extends KeyedCoProcessFunction.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.co.KeyedCoProcessFunction.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 classKeyedCoProcessFunction.Context
-
-