public final class InternalIterableAllWindowFunction<IN,OUT,W extends Window> extends org.apache.flink.api.java.operators.translation.WrappingFunction<AllWindowFunction<IN,OUT,W>> implements InternalWindowFunction<Iterable<IN>,OUT,Byte,W>
AllWindowFunction that takes an Iterable
when the window state also is an Iterable.InternalWindowFunction.InternalWindowContext| Constructor and Description |
|---|
InternalIterableAllWindowFunction(AllWindowFunction<IN,OUT,W> wrappedFunction) |
| Modifier and Type | Method and Description |
|---|---|
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 |
process(Byte key,
W window,
InternalWindowFunction.InternalWindowContext context,
Iterable<IN> input,
org.apache.flink.util.Collector<OUT> out)
Evaluates the window and outputs none or several elements.
|
public InternalIterableAllWindowFunction(AllWindowFunction<IN,OUT,W> wrappedFunction)
public void process(Byte key, W window, InternalWindowFunction.InternalWindowContext context, Iterable<IN> input, org.apache.flink.util.Collector<OUT> out) throws Exception
InternalWindowFunctionprocess in interface InternalWindowFunction<Iterable<IN>,OUT,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 in interface org.apache.flink.api.common.functions.RichFunctiongetRuntimeContext in class org.apache.flink.api.common.functions.AbstractRichFunctionpublic org.apache.flink.api.common.functions.IterationRuntimeContext getIterationRuntimeContext()
getIterationRuntimeContext in interface org.apache.flink.api.common.functions.RichFunctiongetIterationRuntimeContext in class org.apache.flink.api.common.functions.AbstractRichFunctionCopyright © 2014–2020 The Apache Software Foundation. All rights reserved.