use of org.apache.flink.runtime.state.OperatorStateCheckpointOutputStream in project flink by apache.
the class StateSnapshotContextSynchronousImplTest method testCreateRawOperatorStateOutput.
@Test
public void testCreateRawOperatorStateOutput() throws Exception {
OperatorStateCheckpointOutputStream stream = snapshotContext.getRawOperatorStateOutput();
Assert.assertNotNull(stream);
}
Aggregations