Uses of Class
org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers.AsyncTrigger
Packages that use AsyncTrigger
Package
Description
-
Uses of AsyncTrigger in org.apache.flink.runtime.asyncprocessing.operators.windowing
Methods in org.apache.flink.runtime.asyncprocessing.operators.windowing that return AsyncTriggerModifier and TypeMethodDescriptionAsyncTrigger<? super IN,? super W> AsyncWindowOperator.getTrigger()Constructors in org.apache.flink.runtime.asyncprocessing.operators.windowing with parameters of type AsyncTriggerModifierConstructorDescriptionAsyncEvictingWindowOperator(WindowAssigner<? super IN, W> windowAssigner, org.apache.flink.api.common.typeutils.TypeSerializer<W> windowSerializer, org.apache.flink.api.java.functions.KeySelector<IN, K> keySelector, org.apache.flink.api.common.typeutils.TypeSerializer<K> keySerializer, org.apache.flink.api.common.state.v2.StateDescriptor<StreamRecord<IN>> windowStateDescriptor, InternalAsyncWindowFunction<org.apache.flink.api.common.state.v2.StateIterator<IN>, OUT, K, W> windowFunction, AsyncTrigger<? super IN, ? super W> trigger, Evictor<? super IN, ? super W> evictor, long allowedLateness, org.apache.flink.util.OutputTag<IN> lateDataOutputTag) AsyncWindowOperator(WindowAssigner<? super IN, W> windowAssigner, org.apache.flink.api.common.typeutils.TypeSerializer<W> windowSerializer, org.apache.flink.api.java.functions.KeySelector<IN, K> keySelector, org.apache.flink.api.common.typeutils.TypeSerializer<K> keySerializer, org.apache.flink.api.common.state.v2.StateDescriptor<?> windowStateDescriptor, InternalAsyncWindowFunction<ACC, OUT, K, W> windowFunction, AsyncTrigger<? super IN, ? super W> trigger, long allowedLateness, org.apache.flink.util.OutputTag<IN> lateDataOutputTag) Creates a newWindowOperatorbased on the given policies and user functions. -
Uses of AsyncTrigger in org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers
Modifier and TypeClassDescriptionclassAsyncContinuousEventTimeTrigger<W extends Window>AAsyncTriggerthat continuously fires based on a given time interval.classAsyncCountTrigger<W extends Window>AAsyncTriggerthat fires once the count of elements in a pane reaches the given count.classAAsyncTriggerthat fires once the watermark passes the end of the window to which a pane belongs.classATriggerthat fires once the current system time passes the end of the window to which a pane belongs.classAsyncPurgingTrigger<T,W extends Window> A trigger that can turn anyAsyncTriggerinto a purgingTrigger.Methods in org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers that return AsyncTriggerMethods in org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers with parameters of type AsyncTriggerModifier and TypeMethodDescriptionstatic <T,W extends Window>
AsyncPurgingTrigger<T,W> AsyncPurgingTrigger.of(AsyncTrigger<T, W> nestedTrigger) Creates a new purging trigger from the givenTrigger. -
Uses of AsyncTrigger in org.apache.flink.streaming.runtime.operators.windowing
Methods in org.apache.flink.streaming.runtime.operators.windowing with parameters of type AsyncTriggerModifier and TypeMethodDescriptionWindowOperatorBuilder.asyncTrigger(AsyncTrigger<? super T, ? super W> asyncTrigger)