Interface InternalAppendingState<K,N,IN,SV,OUT>
-
- Type Parameters:
K
- The type of key the state is associated toN
- The type of the namespaceIN
- The type of elements added to the stateSV
- The type of elements in the stateOUT
- The type of the resulting element in the state
- All Superinterfaces:
AppendingState<IN,OUT>
,InternalKvState<K,N,SV>
,State
- All Known Subinterfaces:
InternalAggregatingState<K,N,IN,SV,OUT>
,InternalListState<K,N,T>
,InternalMergingState<K,N,IN,SV,OUT>
,InternalReducingState<K,N,T>
public interface InternalAppendingState<K,N,IN,SV,OUT> extends InternalKvState<K,N,SV>, AppendingState<IN,OUT>
The peer to theAppendingState
in the internal state type hierarchy.See
InternalKvState
for a description of the internal state hierarchy.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.flink.runtime.state.internal.InternalKvState
InternalKvState.StateIncrementalVisitor<K,N,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SV
getInternal()
Get internally stored value.void
updateInternal(SV valueToStore)
Update internally stored value.-
Methods inherited from interface org.apache.flink.api.common.state.AppendingState
add, get
-
Methods inherited from interface org.apache.flink.runtime.state.internal.InternalKvState
getKeySerializer, getNamespaceSerializer, getSerializedValue, getStateIncrementalVisitor, getValueSerializer, setCurrentNamespace
-
-