Uses of Class
org.apache.flink.table.runtime.operators.window.groupwindow.triggers.Trigger
Packages that use Trigger
Package
Description
-
Uses of Trigger in org.apache.flink.table.runtime.operators.window.groupwindow.operator
Fields in org.apache.flink.table.runtime.operators.window.groupwindow.operator declared as TriggerMethods in org.apache.flink.table.runtime.operators.window.groupwindow.operator with parameters of type Trigger -
Uses of Trigger in org.apache.flink.table.runtime.operators.window.groupwindow.triggers
Modifier and TypeClassDescriptionstatic final classElementTriggers.CountElement<W extends Window>ATriggerthat fires at some point after a specified number of input elements have arrived.static final classElementTriggers.EveryElement<W extends Window>ATriggerthat triggers on every element.static final classEventTimeTriggers.AfterEndOfWindow<W extends Window>ATriggerthat fires once the watermark passes the end of the window to which a pane belongs.static final classA compositeTriggerthat consist of AfterEndOfWindow and a early trigger and late trigger.static final classEventTimeTriggers.AfterEndOfWindowNoLate<W extends Window>A compositeTriggerthat consist of AfterEndOfWindow and a late trigger.static final classProcessingTimeTriggers.AfterEndOfWindow<W extends Window>ATriggerthat fires once the current system time passes the end of the window to which a pane belongs.static final classA compositeTriggerthat consist of AfterEndOfWindow and a early trigger.static final classTrigger every a given interval, the first trigger time is interval after the first element in the pane.classWindowTrigger<W extends Window>AWindowTriggerdetermines when a window should be evaluated to emit the results.Methods in org.apache.flink.table.runtime.operators.window.groupwindow.triggers that return TriggerModifier and TypeMethodDescriptionEventTimeTriggers.AfterEndOfWindow.withLateFirings(Trigger<W> lateFirings) Creates a newTriggerlike the this, except that it fires repeatedly whenever the givenTriggerfires after the watermark has passed the end of the window.EventTimeTriggers.AfterEndOfWindowNoLate.withLateFirings(Trigger<W> lateFirings) Creates a newTriggerlike the this, except that it fires repeatedly whenever the givenTriggerfires after the watermark has passed the end of the window.Methods in org.apache.flink.table.runtime.operators.window.groupwindow.triggers with parameters of type TriggerModifier and TypeMethodDescriptionEventTimeTriggers.AfterEndOfWindow.withEarlyFirings(Trigger<W> earlyFirings) Creates a newTriggerlike the this, except that it fires repeatedly whenever the givenTriggerfires before the watermark has passed the end of the window.ProcessingTimeTriggers.AfterEndOfWindow.withEarlyFirings(Trigger<W> earlyFirings) Creates a newTriggerlike the this, except that it fires repeatedly whenever the givenTriggerfires before the processing time has passed the end of the window.EventTimeTriggers.AfterEndOfWindow.withLateFirings(Trigger<W> lateFirings) Creates a newTriggerlike the this, except that it fires repeatedly whenever the givenTriggerfires after the watermark has passed the end of the window.EventTimeTriggers.AfterEndOfWindowNoLate.withLateFirings(Trigger<W> lateFirings) Creates a newTriggerlike the this, except that it fires repeatedly whenever the givenTriggerfires after the watermark has passed the end of the window.