Uses of Interface
org.apache.flink.runtime.asyncprocessing.operators.windowing.functions.InternalAsyncWindowFunction
-
Packages that use InternalAsyncWindowFunction Package Description org.apache.flink.runtime.asyncprocessing.operators.windowing org.apache.flink.runtime.asyncprocessing.operators.windowing.functions -
-
Uses of InternalAsyncWindowFunction in org.apache.flink.runtime.asyncprocessing.operators.windowing
Constructors in org.apache.flink.runtime.asyncprocessing.operators.windowing with parameters of type InternalAsyncWindowFunction 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 InternalAsyncWindowFunction in org.apache.flink.runtime.asyncprocessing.operators.windowing.functions
Classes in org.apache.flink.runtime.asyncprocessing.operators.windowing.functions that implement InternalAsyncWindowFunction Modifier and Type Class Description classInternalAggregateProcessAsyncWindowFunction<T,ACC,V,R,K,W extends Window>Internal window function for wrapping aProcessWindowFunctionthat takes anIterableand anAggregateFunction.classInternalIterableAsyncWindowFunction<IN,OUT,KEY,W extends Window>Internal window function for wrapping aWindowFunctionthat takes anIterablewhen the window state also is anIterable.classInternalIterableProcessAsyncWindowFunction<IN,OUT,KEY,W extends Window>Internal window function for wrapping aProcessWindowFunctionthat takes anIterablewhen the window state also is anIterable.classInternalSingleValueAsyncWindowFunction<IN,OUT,KEY,W extends Window>Internal window function for wrapping aWindowFunctionthat takes anIterablewhen the window state is a single value.classInternalSingleValueProcessAsyncWindowFunction<IN,OUT,KEY,W extends Window>Internal window function for wrapping aProcessWindowFunctionthat takes anIterablewhen the window state is a single value.
-