W - The window typeT - The type of the input to the AggregateFunctionACC - The type of the AggregateFunction's accumulatorV - The type of the AggregateFunction's result, and the input to the WindowFunctionR - The result type of the WindowFunctionpublic final class InternalAggregateProcessAllWindowFunction<T,ACC,V,R,W extends Window> extends org.apache.flink.api.java.operators.translation.WrappingFunction<ProcessAllWindowFunction<V,R,W>> implements InternalWindowFunction<Iterable<T>,R,Byte,W>
ProcessAllWindowFunction that takes an
Iterable and an AggregateFunction.InternalWindowFunction.InternalWindowContext| 构造器和说明 |
|---|
InternalAggregateProcessAllWindowFunction(org.apache.flink.api.common.functions.AggregateFunction<T,ACC,V> aggFunction,
ProcessAllWindowFunction<V,R,W> windowFunction) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
clear(W window,
InternalWindowFunction.InternalWindowContext context)
Deletes any state in the
Context when the Window is purged. |
org.apache.flink.api.common.functions.IterationRuntimeContext |
getIterationRuntimeContext() |
org.apache.flink.api.common.functions.RuntimeContext |
getRuntimeContext() |
void |
open(org.apache.flink.configuration.Configuration parameters) |
void |
process(Byte key,
W window,
InternalWindowFunction.InternalWindowContext context,
Iterable<T> input,
org.apache.flink.util.Collector<R> out)
Evaluates the window and outputs none or several elements.
|
public void open(org.apache.flink.configuration.Configuration parameters)
throws Exception
public void process(Byte key, W window, InternalWindowFunction.InternalWindowContext context, Iterable<T> input, org.apache.flink.util.Collector<R> out) throws Exception
InternalWindowFunctionprocess 在接口中 InternalWindowFunction<Iterable<T>,R,Byte,W extends Window>context - The context in which the window is being evaluated.input - The elements in the window being evaluated.out - A collector for emitting elements.Exception - The function may throw exceptions to fail the program and trigger recovery.public void clear(W window, InternalWindowFunction.InternalWindowContext context) throws Exception
InternalWindowFunctionContext when the Window is purged.public org.apache.flink.api.common.functions.RuntimeContext getRuntimeContext()
getRuntimeContext 在接口中 org.apache.flink.api.common.functions.RichFunctiongetRuntimeContext 在类中 org.apache.flink.api.common.functions.AbstractRichFunctionpublic org.apache.flink.api.common.functions.IterationRuntimeContext getIterationRuntimeContext()
getIterationRuntimeContext 在接口中 org.apache.flink.api.common.functions.RichFunctiongetIterationRuntimeContext 在类中 org.apache.flink.api.common.functions.AbstractRichFunctionCopyright © 2014–2021 The Apache Software Foundation. All rights reserved.