IN - The type of the input value.OUT - The type of the output value.W - The type of the window.@Internal public class InternalProcessApplyAllWindowContext<IN,OUT,W extends Window> extends ProcessAllWindowFunction.Context
| Modifier and Type | Method and Description |
|---|---|
org.apache.flink.api.common.state.KeyedStateStore |
globalState()
State accessor for per-key global state.
|
<X> void |
output(org.apache.flink.util.OutputTag<X> outputTag,
X value)
Emits a record to the side output identified by the
OutputTag. |
W |
window() |
org.apache.flink.api.common.state.KeyedStateStore |
windowState()
State accessor for per-key and per-window state.
|
public W window()
window in class ProcessAllWindowFunction.Contextpublic org.apache.flink.api.common.state.KeyedStateStore windowState()
ProcessAllWindowFunction.ContextNOTE:If you use per-window state you have to ensure that you clean it up by
implementing ProcessWindowFunction.clear(ProcessWindowFunction.Context).
windowState in class ProcessAllWindowFunction.Contextpublic org.apache.flink.api.common.state.KeyedStateStore globalState()
ProcessAllWindowFunction.ContextglobalState in class ProcessAllWindowFunction.Contextpublic <X> void output(org.apache.flink.util.OutputTag<X> outputTag,
X value)
ProcessAllWindowFunction.ContextOutputTag.output in class ProcessAllWindowFunction.ContextoutputTag - the OutputTag that identifies the side output to emit to.value - The record to emit.Copyright © 2014–2022 The Apache Software Foundation. All rights reserved.