| Package | Description |
|---|---|
| org.apache.flink.api.common.functions | |
| org.apache.flink.api.common.functions.util | |
| org.apache.flink.api.common.state |
| Modifier and Type | Method and Description |
|---|---|
<T> ListState<T> |
RuntimeContext.getListState(ListStateDescriptor<T> stateProperties)
Gets a handle to the system's key/value list state.
|
| Modifier and Type | Method and Description |
|---|---|
<T> ListState<T> |
AbstractRuntimeUDFContext.getListState(ListStateDescriptor<T> stateProperties) |
| Modifier and Type | Method and Description |
|---|---|
<S> ListState<S> |
OperatorStateStore.getListState(ListStateDescriptor<S> stateDescriptor)
Creates (or restores) a list state.
|
<T> ListState<T> |
KeyedStateStore.getListState(ListStateDescriptor<T> stateProperties)
Gets a handle to the system's key/value list state.
|
<S> ListState<S> |
OperatorStateStore.getOperatorState(ListStateDescriptor<S> stateDescriptor)
Deprecated.
since 1.3.0. This was deprecated as part of a refinement to the function names.
Please use
OperatorStateStore.getListState(ListStateDescriptor) instead. |
<T extends Serializable> |
OperatorStateStore.getSerializableListState(String stateName)
Deprecated.
since 1.3.0. Using Java serialization for persisting state is not encouraged.
Please use
OperatorStateStore.getListState(ListStateDescriptor) instead. |
<S> ListState<S> |
OperatorStateStore.getUnionListState(ListStateDescriptor<S> stateDescriptor)
Creates (or restores) a list state.
|
Copyright © 2014–2018 The Apache Software Foundation. All rights reserved.