Class UnsupportedProcessingTimeManager
- java.lang.Object
-
- org.apache.flink.datastream.impl.context.UnsupportedProcessingTimeManager
-
- All Implemented Interfaces:
org.apache.flink.datastream.api.context.ProcessingTimeManager
public class UnsupportedProcessingTimeManager extends Object implements org.apache.flink.datastream.api.context.ProcessingTimeManager
The special implementation ofProcessingTimeManager, all its methods are not supported. This is used for context that can not define the key.
-
-
Field Summary
Fields Modifier and Type Field Description static UnsupportedProcessingTimeManagerINSTANCE
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longcurrentTime()voiddeleteTimer(long timestamp)voidregisterTimer(long timestamp)
-
-
-
Field Detail
-
INSTANCE
public static final UnsupportedProcessingTimeManager INSTANCE
-
-
Method Detail
-
registerTimer
public void registerTimer(long timestamp)
- Specified by:
registerTimerin interfaceorg.apache.flink.datastream.api.context.ProcessingTimeManager
-
deleteTimer
public void deleteTimer(long timestamp)
- Specified by:
deleteTimerin interfaceorg.apache.flink.datastream.api.context.ProcessingTimeManager
-
currentTime
public long currentTime()
- Specified by:
currentTimein interfaceorg.apache.flink.datastream.api.context.ProcessingTimeManager
-
-