Interface ExecutionContext
-
- All Known Implementing Classes:
ExecutionContextImpl
public interface ExecutionContextA ExecutionContext contains information about the context in which functions are executed and the APIs to create state.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.flink.table.data.RowDatacurrentKey()org.apache.flink.api.common.functions.RuntimeContextgetRuntimeContext()voidsetCurrentKey(org.apache.flink.table.data.RowData key)Sets current key.
-
-
-
Method Detail
-
currentKey
org.apache.flink.table.data.RowData currentKey()
- Returns:
- key of the current processed element.
-
setCurrentKey
void setCurrentKey(org.apache.flink.table.data.RowData key)
Sets current key.
-
getRuntimeContext
org.apache.flink.api.common.functions.RuntimeContext getRuntimeContext()
-
-