use of org.apache.flink.runtime.state.metainfo.StateMetaInfoReader in project flink by apache.
the class ChangelogBackendLogApplier method readStateMetaInfoSnapshot.
private static StateMetaInfoSnapshot readStateMetaInfoSnapshot(DataInputView in, ClassLoader classLoader) throws IOException {
int version = in.readInt();
StateMetaInfoReader reader = StateMetaInfoSnapshotReadersWriters.getReader(version, KEYED_STATE);
return reader.readStateMetaInfoSnapshot(in, classLoader);
}
Aggregations