| Modifier and Type | Method and Description |
|---|---|
<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.apply(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.apply(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.
|
<R> SingleOutputStreamOperator<R> |
AllWindowedStream.apply(R initialValue,
org.apache.flink.api.common.functions.FoldFunction<T,R> foldFunction,
AllWindowFunction<R,R,W> function)
Applies the given window function to each window.
|
<R> SingleOutputStreamOperator<R> |
AllWindowedStream.apply(R initialValue,
org.apache.flink.api.common.functions.FoldFunction<T,R> foldFunction,
AllWindowFunction<R,R,W> function,
org.apache.flink.api.common.typeinfo.TypeInformation<R> resultType)
Applies the given window function to each window.
|
| Modifier and Type | Class and Description |
|---|---|
class |
FoldApplyAllWindowFunction<W extends Window,T,ACC> |
class |
PassThroughAllWindowFunction<W extends Window,T> |
class |
ReduceApplyAllWindowFunction<W extends Window,T,R> |
class |
ReduceIterableAllWindowFunction<W extends Window,T> |
class |
RichAllWindowFunction<IN,OUT,W extends Window> |
| Constructor and Description |
|---|
FoldApplyAllWindowFunction(ACC initialValue,
org.apache.flink.api.common.functions.FoldFunction<T,ACC> foldFunction,
AllWindowFunction<ACC,ACC,W> windowFunction) |
ReduceApplyAllWindowFunction(org.apache.flink.api.common.functions.ReduceFunction<T> reduceFunction,
AllWindowFunction<T,R,W> windowFunction) |
| Modifier and Type | Field and Description |
|---|---|
protected AllWindowFunction<IN,OUT,W> |
InternalSingleValueAllWindowFunction.wrappedFunction |
protected AllWindowFunction<IN,OUT,W> |
InternalIterableAllWindowFunction.wrappedFunction |
| Constructor and Description |
|---|
InternalIterableAllWindowFunction(AllWindowFunction<IN,OUT,W> wrappedFunction) |
InternalSingleValueAllWindowFunction(AllWindowFunction<IN,OUT,W> wrappedFunction) |
Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.