Package org.apache.flink.streaming.api.windowing.triggers
-
Interface Summary Interface Description Trigger.OnMergeContext Extension ofTrigger.TriggerContext
that is given toTrigger.onMerge(Window, OnMergeContext)
.Trigger.TriggerContext A context object that is given toTrigger
methods to allow them to register timer callbacks and deal with state. -
Class Summary Class Description CountTrigger<W extends Window> ATrigger
that fires once the count of elements in a pane reaches the given count.EventTimeTrigger ATrigger
that fires once the watermark passes the end of the window to which a pane belongs.ProcessingTimeTrigger ATrigger
that fires once the current system time passes the end of the window to which a pane belongs.PurgingTrigger<T,W extends Window> A trigger that can turn anyTrigger
into a purgingTrigger
.Trigger<T,W extends Window> ATrigger
determines when a pane of a window should be evaluated to emit the results for that part of the window. -
Enum Summary Enum Description TriggerResult Result type for trigger methods.