Java Code Examples for org.apache.flink.testutils.serialization.types.SerializationTestType#read()
The following examples show how to use
org.apache.flink.testutils.serialization.types.SerializationTestType#read() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PagedViewsTest.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
private static void testSequenceOfTypes(Iterable<SerializationTestType> sequence, int segmentSize) throws Exception { List<SerializationTestType> elements = new ArrayList<>(512); TestOutputView outView = new TestOutputView(segmentSize); // write for (SerializationTestType type : sequence) { // serialize the record type.write(outView); elements.add(type); } outView.close(); // check the records TestInputView inView = new TestInputView(outView.segments); for (SerializationTestType reference : elements) { SerializationTestType result = reference.getClass().newInstance(); result.read(inView); assertEquals(reference, result); } }
Example 2
Source File: PagedViewsTest.java From flink with Apache License 2.0 | 6 votes |
private static void testSequenceOfTypes(Iterable<SerializationTestType> sequence, int segmentSize) throws Exception { List<SerializationTestType> elements = new ArrayList<>(512); TestOutputView outView = new TestOutputView(segmentSize); // write for (SerializationTestType type : sequence) { // serialize the record type.write(outView); elements.add(type); } outView.close(); // check the records TestInputView inView = new TestInputView(outView.segments); for (SerializationTestType reference : elements) { SerializationTestType result = reference.getClass().newInstance(); result.read(inView); assertEquals(reference, result); } }
Example 3
Source File: PagedViewsTest.java From flink with Apache License 2.0 | 6 votes |
private static void testSequenceOfTypes(Iterable<SerializationTestType> sequence, int segmentSize) throws Exception { List<SerializationTestType> elements = new ArrayList<>(512); TestOutputView outView = new TestOutputView(segmentSize); // write for (SerializationTestType type : sequence) { // serialize the record type.write(outView); elements.add(type); } outView.close(); // check the records TestInputView inView = new TestInputView(outView.segments); for (SerializationTestType reference : elements) { SerializationTestType result = reference.getClass().newInstance(); result.read(inView); assertEquals(reference, result); } }