Class InternalValueState<K,V>
- java.lang.Object
-
- org.apache.flink.runtime.state.v2.InternalKeyedState<K,V>
-
- org.apache.flink.runtime.state.v2.InternalValueState<K,V>
-
- Type Parameters:
K- The type of key the state is associated to.V- The type of values kept internally in state.
- All Implemented Interfaces:
org.apache.flink.api.common.state.v2.State,org.apache.flink.api.common.state.v2.ValueState<V>
public class InternalValueState<K,V> extends InternalKeyedState<K,V> implements org.apache.flink.api.common.state.v2.ValueState<V>
A default implementation ofValueStatewhich delegates all async requests toAsyncExecutionController.
-
-
Constructor Summary
Constructors Constructor Description InternalValueState(StateRequestHandler stateRequestHandler, ValueStateDescriptor<V> valueStateDescriptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.flink.api.common.state.v2.StateFuture<Void>asyncUpdate(V value)org.apache.flink.api.common.state.v2.StateFuture<V>asyncValue()-
Methods inherited from class org.apache.flink.runtime.state.v2.InternalKeyedState
asyncClear, getStateDescriptor, getValueSerializer, handleRequest
-
-
-
-
Constructor Detail
-
InternalValueState
public InternalValueState(StateRequestHandler stateRequestHandler, ValueStateDescriptor<V> valueStateDescriptor)
-
-