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 KgetCurrentKey()Get key of the firing timer.abstract TimeDomaintimeDomain()TheTimeDomainof 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()
TheTimeDomainof the firing timer.
-
getCurrentKey
public abstract K getCurrentKey()
Get key of the firing timer.- Specified by:
getCurrentKeyin classKeyedCoProcessFunction.Context
-
-