Uses of Interface
org.apache.flink.runtime.state.Snapshotable
-
Packages that use Snapshotable 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. -
-
Uses of Snapshotable in org.apache.flink.runtime.state
Subinterfaces of Snapshotable in org.apache.flink.runtime.state Modifier and Type Interface Description interfaceCheckpointableKeyedStateBackend<K>Interface that combines both, theKeyedStateBackendinterface, which encapsulates methods responsible for keyed state management and theSnapshotablewhich tells the system how to snapshot the underlying state.interfaceOperatorStateBackendInterface that combines both, the user facingOperatorStateStoreinterface and the system interfaceSnapshotableClasses in org.apache.flink.runtime.state that implement Snapshotable Modifier and Type Class Description classAbstractKeyedStateBackend<K>Base implementation of KeyedStateBackend.classDefaultOperatorStateBackendDefault implementation of OperatorStateStore that provides the ability to make snapshots. -
Uses of Snapshotable in org.apache.flink.runtime.state.heap
Classes in org.apache.flink.runtime.state.heap that implement Snapshotable Modifier and Type Class Description classHeapKeyedStateBackend<K>AAbstractKeyedStateBackendthat keeps state on the Java Heap and will serialize state to streams provided by aCheckpointStreamFactoryupon checkpointing.
-