IN - The type of the input value.OUT - The type of the output value.KEY - The type of the key.W - The type of the window.@Internal public class InternalProcessWindowContext<IN,OUT,KEY,W extends Window> extends ProcessWindowFunction.Context
| 限定符和类型 | 方法和说明 |
|---|---|
long |
currentProcessingTime()
Returns the current processing time.
|
long |
currentWatermark()
Returns the current event-time watermark.
|
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()
Returns the window that is being evaluated.
|
org.apache.flink.api.common.state.KeyedStateStore |
windowState()
State accessor for per-key and per-window state.
|
public W window()
ProcessWindowFunction.Contextwindow 在类中 ProcessWindowFunction.Contextpublic long currentProcessingTime()
ProcessWindowFunction.Contextpublic long currentWatermark()
ProcessWindowFunction.Contextpublic org.apache.flink.api.common.state.KeyedStateStore windowState()
ProcessWindowFunction.ContextNOTE:If you use per-window state you have to ensure that you clean it up by
implementing ProcessWindowFunction.clear(Context).
windowState 在类中 ProcessWindowFunction.Contextpublic org.apache.flink.api.common.state.KeyedStateStore globalState()
ProcessWindowFunction.ContextglobalState 在类中 ProcessWindowFunction.Contextpublic <X> void output(org.apache.flink.util.OutputTag<X> outputTag,
X value)
ProcessWindowFunction.ContextOutputTag.output 在类中 ProcessWindowFunction.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.