Uses of Interface
org.apache.flink.runtime.state.StateSnapshotTransformer
Packages that use StateSnapshotTransformer
Package
Description
This package contains the classes for key/value state backends that store the state on the JVM
heap as objects.
-
Uses of StateSnapshotTransformer in org.apache.flink.runtime.state
Subinterfaces of StateSnapshotTransformer in org.apache.flink.runtime.stateModifier and TypeInterfaceDescriptionstatic interfaceCollection state specific transformer which says how to transform entries of the collection.Classes in org.apache.flink.runtime.state that implement StateSnapshotTransformerModifier and TypeClassDescriptionstatic classGeneral implementation of list state transformer.static classGeneral implementation of map state transformer.Methods in org.apache.flink.runtime.state that return types with arguments of type StateSnapshotTransformerModifier and TypeMethodDescriptionStateSnapshotTransformer.StateSnapshotTransformFactory.createForDeserializedState()StateSnapshotTransformers.ListStateSnapshotTransformFactory.createForDeserializedState()StateSnapshotTransformers.MapStateSnapshotTransformFactory.createForDeserializedState()StateSnapshotTransformers.StateSnapshotTransformFactoryWrapAdaptor.createForDeserializedState()Optional<StateSnapshotTransformer<byte[]>>StateSnapshotTransformer.StateSnapshotTransformFactory.createForSerializedState()Optional<StateSnapshotTransformer<byte[]>>StateSnapshotTransformers.StateSnapshotTransformFactoryWrapAdaptor.createForSerializedState()Methods in org.apache.flink.runtime.state with parameters of type StateSnapshotTransformerModifier and TypeMethodDescriptiondefault StateEntry<K,N, S> StateEntry.filterOrTransform(StateSnapshotTransformer<S> transformer) Constructors in org.apache.flink.runtime.state with parameters of type StateSnapshotTransformerModifierConstructorDescriptionListStateSnapshotTransformer(StateSnapshotTransformer<T> entryValueTransformer) MapStateSnapshotTransformer(StateSnapshotTransformer<V> entryValueTransformer) -
Uses of StateSnapshotTransformer in org.apache.flink.runtime.state.heap
Fields in org.apache.flink.runtime.state.heap declared as StateSnapshotTransformerModifier and TypeFieldDescriptionprotected final StateSnapshotTransformer<S>AbstractStateTableSnapshot.stateSnapshotTransformerMethods in org.apache.flink.runtime.state.heap with parameters of type StateSnapshotTransformerModifier and TypeMethodDescriptionCopyOnWriteStateMapSnapshot.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) 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) voidCopyOnWriteStateMapSnapshot.writeState(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, org.apache.flink.core.memory.DataOutputView dov, StateSnapshotTransformer<S> stateSnapshotTransformer) abstract voidStateMapSnapshot.writeState(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, org.apache.flink.core.memory.DataOutputView dov, StateSnapshotTransformer<S> stateSnapshotTransformer) Writes the state in this snapshot to output.