Uses of Interface
org.apache.flink.runtime.state.StateEntry
-
Packages that use StateEntry Package Description org.apache.flink.runtime.state org.apache.flink.runtime.state.heap This package contains the classes for key/value state backends that store the state on the JVM heap as objects.org.apache.flink.runtime.state.internal This package holds the classes of the internal state type hierarchy. -
-
Uses of StateEntry in org.apache.flink.runtime.state
Classes in org.apache.flink.runtime.state that implement StateEntry Modifier and Type Class Description static classStateEntry.SimpleStateEntry<K,N,S>Methods in org.apache.flink.runtime.state that return StateEntry Modifier and Type Method Description default StateEntry<K,N,S>StateEntry. filterOrTransform(StateSnapshotTransformer<S> transformer)Methods in org.apache.flink.runtime.state that return types with arguments of type StateEntry Modifier and Type Method Description Iterator<StateEntry<K,N,S>>IterableStateSnapshot. getIterator(int keyGroup) -
Uses of StateEntry in org.apache.flink.runtime.state.heap
Classes in org.apache.flink.runtime.state.heap that implement StateEntry Modifier and Type Class Description protected static classCopyOnWriteStateMap.StateMapEntry<K,N,S>One entry in theCopyOnWriteStateMap.Methods in org.apache.flink.runtime.state.heap that return types with arguments of type StateEntry Modifier and Type Method Description abstract Iterator<StateEntry<K,N,S>>StateMapSnapshot. getIterator(org.apache.flink.api.common.typeutils.TypeSerializer<K> keySerializer, org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer, org.apache.flink.api.common.typeutils.TypeSerializer<S> stateSerializer, StateSnapshotTransformer<S> stateSnapshotTransformer)Iterator<StateEntry<K,N,S>>CopyOnWriteStateMap. iterator()Iterator<StateEntry<K,N,S>>StateTable. iterator() -
Uses of StateEntry in org.apache.flink.runtime.state.internal
Methods in org.apache.flink.runtime.state.internal that return types with arguments of type StateEntry Modifier and Type Method Description Collection<StateEntry<K,N,V>>InternalKvState.StateIncrementalVisitor. nextEntries()Return some next entries which are available at the moment.Methods in org.apache.flink.runtime.state.internal with parameters of type StateEntry Modifier and Type Method Description voidInternalKvState.StateIncrementalVisitor. remove(StateEntry<K,N,V> stateEntry)voidInternalKvState.StateIncrementalVisitor. update(StateEntry<K,N,V> stateEntry, V newValue)Update the value of the last returned entry from thenext()method.
-