Uses of Interface
org.apache.flink.streaming.api.functions.windowing.AllWindowFunction
Packages that use AllWindowFunction
Package
Description
-
Uses of AllWindowFunction in org.apache.flink.streaming.api.datastream
Methods in org.apache.flink.streaming.api.datastream with parameters of type AllWindowFunctionModifier and TypeMethodDescription<ACC,V, R> SingleOutputStreamOperator<R> AllWindowedStream.aggregate(org.apache.flink.api.common.functions.AggregateFunction<T, ACC, V> aggFunction, AllWindowFunction<V, R, W> windowFunction) Applies the given window function to each window.<ACC,V, R> SingleOutputStreamOperator<R> AllWindowedStream.aggregate(org.apache.flink.api.common.functions.AggregateFunction<T, ACC, V> aggregateFunction, AllWindowFunction<V, R, W> windowFunction, org.apache.flink.api.common.typeinfo.TypeInformation<ACC> accumulatorType, org.apache.flink.api.common.typeinfo.TypeInformation<R> resultType) Applies the given window function to each window.<R> SingleOutputStreamOperator<R>AllWindowedStream.apply(AllWindowFunction<T, R, W> function) Applies the given window function to each window.<R> SingleOutputStreamOperator<R>AllWindowedStream.apply(AllWindowFunction<T, R, W> function, org.apache.flink.api.common.typeinfo.TypeInformation<R> resultType) Applies the given window function to each window.<R> SingleOutputStreamOperator<R>AllWindowedStream.reduce(org.apache.flink.api.common.functions.ReduceFunction<T> reduceFunction, AllWindowFunction<T, R, W> function) Applies the given window function to each window.<R> SingleOutputStreamOperator<R>AllWindowedStream.reduce(org.apache.flink.api.common.functions.ReduceFunction<T> reduceFunction, AllWindowFunction<T, R, W> function, org.apache.flink.api.common.typeinfo.TypeInformation<R> resultType) Applies the given window function to each window. -
Uses of AllWindowFunction in org.apache.flink.streaming.api.functions.windowing
Classes in org.apache.flink.streaming.api.functions.windowing that implement AllWindowFunctionModifier and TypeClassDescriptionclassAggregateApplyAllWindowFunction<W extends Window,T, ACC, V, R> classPassThroughAllWindowFunction<W extends Window,T> AAllWindowFunctionthat just emits each input element.classReduceApplyAllWindowFunction<W extends Window,T, R> InternalAllWindowFunctionthat is used for implementing a fold on a window configuration that only allowsAllWindowFunctionand cannot directly execute aReduceFunction.Constructors in org.apache.flink.streaming.api.functions.windowing with parameters of type AllWindowFunctionModifierConstructorDescriptionAggregateApplyAllWindowFunction(org.apache.flink.api.common.functions.AggregateFunction<T, ACC, V> aggFunction, AllWindowFunction<V, R, W> windowFunction) ReduceApplyAllWindowFunction(org.apache.flink.api.common.functions.ReduceFunction<T> reduceFunction, AllWindowFunction<T, R, W> windowFunction) -
Uses of AllWindowFunction in org.apache.flink.streaming.runtime.operators.windowing.functions
Constructors in org.apache.flink.streaming.runtime.operators.windowing.functions with parameters of type AllWindowFunctionModifierConstructorDescriptionInternalIterableAllWindowFunction(AllWindowFunction<IN, OUT, W> wrappedFunction) InternalSingleValueAllWindowFunction(AllWindowFunction<IN, OUT, W> wrappedFunction)