Interface BasePartitionedContext
-
- All Superinterfaces:
RuntimeContext
- All Known Subinterfaces:
PartitionedContext<OUT>,TwoOutputPartitionedContext<OUT1,OUT2>
@Experimental public interface BasePartitionedContext extends RuntimeContext
On the base ofRuntimeContext,BasePartitionedContextalso contains all partition-wise execution information, such as getting state, registering timer, etc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProcessingTimeManagergetProcessingTimeManager()Get theProcessingTimeManagerof this process function.StateManagergetStateManager()Get theStateManagerof this process function.-
Methods inherited from interface org.apache.flink.datastream.api.context.RuntimeContext
getJobInfo, getMetricGroup, getTaskInfo
-
-
-
-
Method Detail
-
getStateManager
StateManager getStateManager()
Get theStateManagerof this process function.
-
getProcessingTimeManager
ProcessingTimeManager getProcessingTimeManager()
Get theProcessingTimeManagerof this process function.
-
-