Interface InternalAsyncWindowFunction.InternalWindowContext
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AsyncWindowOperator.WindowContext
public static interface InternalAsyncWindowFunction.InternalWindowContext extends Serializable
A context forInternalAsyncWindowFunction, similar toProcessWindowFunction.Contextbut for internal use.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcurrentProcessingTime()longcurrentWatermark()org.apache.flink.api.common.state.KeyedStateStoreglobalState()<X> voidoutput(org.apache.flink.util.OutputTag<X> outputTag, X value)org.apache.flink.api.common.state.KeyedStateStorewindowState()
-
-
-
Method Detail
-
currentProcessingTime
long currentProcessingTime()
-
currentWatermark
long currentWatermark()
-
windowState
org.apache.flink.api.common.state.KeyedStateStore windowState()
-
globalState
org.apache.flink.api.common.state.KeyedStateStore globalState()
-
output
<X> void output(org.apache.flink.util.OutputTag<X> outputTag, X value)
-
-