Class UnslicingWindowTimerServiceImpl
- java.lang.Object
-
- org.apache.flink.table.runtime.operators.window.tvf.common.WindowTimerServiceBase<TimeWindow>
-
- org.apache.flink.table.runtime.operators.window.tvf.unslicing.UnslicingWindowTimerServiceImpl
-
- All Implemented Interfaces:
WindowTimerService<TimeWindow>
public class UnslicingWindowTimerServiceImpl extends WindowTimerServiceBase<TimeWindow>
AWindowTimerServicefor unslicing window.
-
-
Field Summary
-
Fields inherited from class org.apache.flink.table.runtime.operators.window.tvf.common.WindowTimerServiceBase
internalTimerService, shiftTimeZone
-
-
Constructor Summary
Constructors Constructor Description UnslicingWindowTimerServiceImpl(org.apache.flink.streaming.api.operators.InternalTimerService<TimeWindow> internalTimerService, ZoneId shiftTimeZone)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidregisterEventTimeWindowTimer(TimeWindow window)Registers a window timer to be fired when event time watermark passes the window.voidregisterProcessingTimeWindowTimer(TimeWindow window)Registers a window timer to be fired when processing time passes the window.-
Methods inherited from class org.apache.flink.table.runtime.operators.window.tvf.common.WindowTimerServiceBase
currentProcessingTime, currentWatermark, getShiftTimeZone
-
-
-
-
Constructor Detail
-
UnslicingWindowTimerServiceImpl
public UnslicingWindowTimerServiceImpl(org.apache.flink.streaming.api.operators.InternalTimerService<TimeWindow> internalTimerService, ZoneId shiftTimeZone)
-
-
Method Detail
-
registerProcessingTimeWindowTimer
public void registerProcessingTimeWindowTimer(TimeWindow window)
Description copied from interface:WindowTimerServiceRegisters a window timer to be fired when processing time passes the window. The window you pass here will be provided when the timer fires.
-
registerEventTimeWindowTimer
public void registerEventTimeWindowTimer(TimeWindow window)
Description copied from interface:WindowTimerServiceRegisters a window timer to be fired when event time watermark passes the window. The window you pass here will be provided when the timer fires.
-
-