Uses of Enum
org.apache.flink.streaming.api.windowing.triggers.TriggerResult
Packages that use TriggerResult
Package
Description
-
Uses of TriggerResult in org.apache.flink.runtime.asyncprocessing.operators.windowing
Methods in org.apache.flink.runtime.asyncprocessing.operators.windowing that return types with arguments of type TriggerResultModifier and TypeMethodDescriptionorg.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncWindowOperator.Context.onElement(StreamRecord<IN> element) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncWindowOperator.Context.onEventTime(long time) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncWindowOperator.Context.onProcessingTime(long time) -
Uses of TriggerResult in org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers
Methods in org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers that return types with arguments of type TriggerResultModifier and TypeMethodDescriptionorg.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncContinuousEventTimeTrigger.onElement(Object element, long timestamp, W window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncCountTrigger.onElement(Object element, long timestamp, W window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncEventTimeTrigger.onElement(Object element, long timestamp, TimeWindow window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncProcessingTimeTrigger.onElement(Object element, long timestamp, TimeWindow window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncPurgingTrigger.onElement(T element, long timestamp, W window, AsyncTrigger.TriggerContext ctx) abstract org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncTrigger.onElement(T element, long timestamp, W window, AsyncTrigger.TriggerContext ctx) Called for every element that gets added to a pane.org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncContinuousEventTimeTrigger.onEventTime(long time, W window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncCountTrigger.onEventTime(long time, W window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncEventTimeTrigger.onEventTime(long time, TimeWindow window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncProcessingTimeTrigger.onEventTime(long time, TimeWindow window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncPurgingTrigger.onEventTime(long time, W window, AsyncTrigger.TriggerContext ctx) abstract org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncTrigger.onEventTime(long time, W window, AsyncTrigger.TriggerContext ctx) Called when an event-time timer that was set using the trigger context fires.org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncContinuousEventTimeTrigger.onProcessingTime(long time, W window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncCountTrigger.onProcessingTime(long time, W window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncEventTimeTrigger.onProcessingTime(long time, TimeWindow window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncProcessingTimeTrigger.onProcessingTime(long time, TimeWindow window, AsyncTrigger.TriggerContext ctx) org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncPurgingTrigger.onProcessingTime(long time, W window, AsyncTrigger.TriggerContext ctx) abstract org.apache.flink.api.common.state.v2.StateFuture<TriggerResult>AsyncTrigger.onProcessingTime(long time, W window, AsyncTrigger.TriggerContext ctx) Called when a processing-time timer that was set using the trigger context fires. -
Uses of TriggerResult in org.apache.flink.streaming.api.windowing.assigners
Methods in org.apache.flink.streaming.api.windowing.assigners that return TriggerResultModifier and TypeMethodDescriptionGlobalWindows.EndOfStreamTrigger.onElement(Object element, long timestamp, GlobalWindow window, Trigger.TriggerContext ctx) GlobalWindows.NeverTrigger.onElement(Object element, long timestamp, GlobalWindow window, Trigger.TriggerContext ctx) GlobalWindows.EndOfStreamTrigger.onEventTime(long time, GlobalWindow window, Trigger.TriggerContext ctx) GlobalWindows.NeverTrigger.onEventTime(long time, GlobalWindow window, Trigger.TriggerContext ctx) GlobalWindows.EndOfStreamTrigger.onProcessingTime(long time, GlobalWindow window, Trigger.TriggerContext ctx) GlobalWindows.NeverTrigger.onProcessingTime(long time, GlobalWindow window, Trigger.TriggerContext ctx) -
Uses of TriggerResult in org.apache.flink.streaming.api.windowing.triggers
Methods in org.apache.flink.streaming.api.windowing.triggers that return TriggerResultModifier and TypeMethodDescriptionCountTrigger.onElement(Object element, long timestamp, W window, Trigger.TriggerContext ctx) EventTimeTrigger.onElement(Object element, long timestamp, TimeWindow window, Trigger.TriggerContext ctx) ProcessingTimeTrigger.onElement(Object element, long timestamp, TimeWindow window, Trigger.TriggerContext ctx) PurgingTrigger.onElement(T element, long timestamp, W window, Trigger.TriggerContext ctx) abstract TriggerResultTrigger.onElement(T element, long timestamp, W window, Trigger.TriggerContext ctx) Called for every element that gets added to a pane.CountTrigger.onEventTime(long time, W window, Trigger.TriggerContext ctx) EventTimeTrigger.onEventTime(long time, TimeWindow window, Trigger.TriggerContext ctx) ProcessingTimeTrigger.onEventTime(long time, TimeWindow window, Trigger.TriggerContext ctx) PurgingTrigger.onEventTime(long time, W window, Trigger.TriggerContext ctx) abstract TriggerResultTrigger.onEventTime(long time, W window, Trigger.TriggerContext ctx) Called when an event-time timer that was set using the trigger context fires.CountTrigger.onProcessingTime(long time, W window, Trigger.TriggerContext ctx) EventTimeTrigger.onProcessingTime(long time, TimeWindow window, Trigger.TriggerContext ctx) ProcessingTimeTrigger.onProcessingTime(long time, TimeWindow window, Trigger.TriggerContext ctx) PurgingTrigger.onProcessingTime(long time, W window, Trigger.TriggerContext ctx) abstract TriggerResultTrigger.onProcessingTime(long time, W window, Trigger.TriggerContext ctx) Called when a processing-time timer that was set using the trigger context fires.static TriggerResultReturns the enum constant of this type with the specified name.static TriggerResult[]TriggerResult.values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of TriggerResult in org.apache.flink.streaming.runtime.operators.windowing
Methods in org.apache.flink.streaming.runtime.operators.windowing that return TriggerResultModifier and TypeMethodDescriptionWindowOperator.Context.onElement(StreamRecord<IN> element) WindowOperator.Context.onEventTime(long time) WindowOperator.Context.onProcessingTime(long time)