Package org.apache.flink.runtime.state
Interface StateEntry<K,N,S>
- Type Parameters:
K- type of key.N- type of namespace.S- type of state.
- All Known Implementing Classes:
CopyOnWriteStateMap.StateMapEntry,StateEntry.SimpleStateEntry
public interface StateEntry<K,N,S>
Interface of entries in a state backend. Entries are triple of key, namespace, and state.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptiondefault StateEntry<K,N, S> filterOrTransform(StateSnapshotTransformer<S> transformer) getKey()Returns the key of this entry.Returns the namespace of this entry.getState()Returns the state of this entry.