Interface StateMetaInfoWriter
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface StateMetaInfoWriter
Functional interface to writeStateMetaInfoSnapshot.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwriteStateMetaInfoSnapshot(StateMetaInfoSnapshot snapshot, org.apache.flink.core.memory.DataOutputView outputView)Writes the given snapshot to the output view.
-
-
-
Method Detail
-
writeStateMetaInfoSnapshot
void writeStateMetaInfoSnapshot(@Nonnull StateMetaInfoSnapshot snapshot, @Nonnull org.apache.flink.core.memory.DataOutputView outputView) throws IOExceptionWrites the given snapshot to the output view.- Parameters:
snapshot- the snapshot to write.outputView- the output to write into.- Throws:
IOException- on write problems.
-
-