Class KeyedStateBootstrapFunction.Context
- java.lang.Object
-
- org.apache.flink.state.api.functions.KeyedStateBootstrapFunction.Context
-
- Enclosing class:
- KeyedStateBootstrapFunction<K,IN>
public abstract class KeyedStateBootstrapFunction.Context extends Object
Information available in an invocation of#processElement(Object, Context)
.
-
-
Constructor Summary
Constructors Constructor Description Context()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract K
getCurrentKey()
Get key of the element being processed.abstract org.apache.flink.streaming.api.TimerService
timerService()
ATimerService
for querying time and registering timers.
-
-
-
Method Detail
-
timerService
public abstract org.apache.flink.streaming.api.TimerService timerService()
ATimerService
for querying time and registering timers.
-
getCurrentKey
public abstract K getCurrentKey()
Get key of the element being processed.
-
-