Uses of Class
org.apache.flink.table.runtime.operators.window.groupwindow.triggers.Trigger
-
Packages that use Trigger Package Description org.apache.flink.table.runtime.operators.window.groupwindow.operator org.apache.flink.table.runtime.operators.window.groupwindow.triggers -
-
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 Trigger Modifier and Type Field Description protected Trigger<?>WindowOperatorBuilder. triggerMethods in org.apache.flink.table.runtime.operators.window.groupwindow.operator with parameters of type Trigger Modifier and Type Method Description WindowOperatorBuilderWindowOperatorBuilder. triggering(Trigger<?> trigger) -
Uses of Trigger in org.apache.flink.table.runtime.operators.window.groupwindow.triggers
Subclasses of Trigger in org.apache.flink.table.runtime.operators.window.groupwindow.triggers Modifier and Type Class Description static classElementTriggers.CountElement<W extends Window>ATriggerthat fires at some point after a specified number of input elements have arrived.static classElementTriggers.EveryElement<W extends Window>ATriggerthat triggers on every element.static classEventTimeTriggers.AfterEndOfWindow<W extends Window>ATriggerthat fires once the watermark passes the end of the window to which a pane belongs.static classEventTimeTriggers.AfterEndOfWindowEarlyAndLate<W extends Window>A compositeTriggerthat consist of AfterEndOfWindow and a early trigger and late trigger.static classEventTimeTriggers.AfterEndOfWindowNoLate<W extends Window>A compositeTriggerthat consist of AfterEndOfWindow and a late trigger.static classProcessingTimeTriggers.AfterEndOfWindow<W extends Window>ATriggerthat fires once the current system time passes the end of the window to which a pane belongs.static classProcessingTimeTriggers.AfterEndOfWindowNoLate<W extends Window>A compositeTriggerthat consist of AfterEndOfWindow and a early trigger.static classProcessingTimeTriggers.AfterFirstElementPeriodic<W extends Window>Trigger 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 Trigger Modifier and Type Method Description Trigger<W>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.Trigger<W>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 Trigger Modifier and Type Method Description EventTimeTriggers.AfterEndOfWindowNoLate<W>EventTimeTriggers.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.AfterEndOfWindowNoLate<W>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.Trigger<W>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.Trigger<W>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.
-