Uses of Class
org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers.AsyncTrigger
-
-
Uses of AsyncTrigger in org.apache.flink.runtime.asyncprocessing.operators.windowing
Methods in org.apache.flink.runtime.asyncprocessing.operators.windowing that return AsyncTrigger Modifier and Type Method Description AsyncTrigger<? super IN,? super W>AsyncWindowOperator. getTrigger()Constructors in org.apache.flink.runtime.asyncprocessing.operators.windowing with parameters of type AsyncTrigger Constructor Description AsyncEvictingWindowOperator(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
Subclasses of AsyncTrigger in org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers Modifier and Type Class Description classAsyncContinuousEventTimeTrigger<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.classAsyncEventTimeTriggerAAsyncTriggerthat fires once the watermark passes the end of the window to which a pane belongs.classAsyncProcessingTimeTriggerATriggerthat 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 AsyncTrigger Modifier and Type Method Description AsyncTrigger<T,W>AsyncPurgingTrigger. getNestedTrigger()Methods in org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers with parameters of type AsyncTrigger Modifier and Type Method Description static <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 AsyncTrigger Modifier and Type Method Description WindowOperatorBuilder<T,K,W>WindowOperatorBuilder. asyncTrigger(AsyncTrigger<? super T,? super W> asyncTrigger)
-