Java Code Examples for org.apache.flink.api.common.typeutils.NestedSerializersSnapshotDelegate#readNestedSerializerSnapshots()
The following examples show how to use
org.apache.flink.api.common.typeutils.NestedSerializersSnapshotDelegate#readNestedSerializerSnapshots() .
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: BaseRowSerializer.java From flink with Apache License 2.0 | 6 votes |
@Override public void readSnapshot(int readVersion, DataInputView in, ClassLoader userCodeClassLoader) throws IOException { int length = in.readInt(); DataInputViewStream stream = new DataInputViewStream(in); previousTypes = new LogicalType[length]; for (int i = 0; i < length; i++) { try { previousTypes[i] = InstantiationUtil.deserializeObject( stream, userCodeClassLoader ); } catch (ClassNotFoundException e) { throw new IOException(e); } } this.nestedSerializersSnapshotDelegate = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots( in, userCodeClassLoader ); }
Example 2
Source File: RowDataSerializer.java From flink with Apache License 2.0 | 6 votes |
@Override public void readSnapshot(int readVersion, DataInputView in, ClassLoader userCodeClassLoader) throws IOException { int length = in.readInt(); DataInputViewStream stream = new DataInputViewStream(in); previousTypes = new LogicalType[length]; for (int i = 0; i < length; i++) { try { previousTypes[i] = InstantiationUtil.deserializeObject( stream, userCodeClassLoader ); } catch (ClassNotFoundException e) { throw new IOException(e); } } this.nestedSerializersSnapshotDelegate = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots( in, userCodeClassLoader ); }
Example 3
Source File: RowDataSerializer.java From flink with Apache License 2.0 | 6 votes |
@Override public void readSnapshot(int readVersion, DataInputView in, ClassLoader userCodeClassLoader) throws IOException { int length = in.readInt(); DataInputViewStream stream = new DataInputViewStream(in); previousTypes = new LogicalType[length]; for (int i = 0; i < length; i++) { try { previousTypes[i] = InstantiationUtil.deserializeObject( stream, userCodeClassLoader ); } catch (ClassNotFoundException e) { throw new IOException(e); } } this.nestedSerializersSnapshotDelegate = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots( in, userCodeClassLoader ); }
Example 4
Source File: SortedMapSerializerSnapshot.java From flink with Apache License 2.0 | 5 votes |
@Override public void readSnapshot(int readVersion, DataInputView in, ClassLoader userCodeClassLoader) throws IOException { try { comparator = InstantiationUtil.deserializeObject( new DataInputViewStream(in), userCodeClassLoader); } catch (ClassNotFoundException e) { throw new IOException(e); } this.nestedSerializersSnapshotDelegate = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots( in, userCodeClassLoader); }
Example 5
Source File: SortedMapSerializerSnapshot.java From flink with Apache License 2.0 | 5 votes |
@Override public void readSnapshot(int readVersion, DataInputView in, ClassLoader userCodeClassLoader) throws IOException { try { comparator = InstantiationUtil.deserializeObject( new DataInputViewStream(in), userCodeClassLoader); } catch (ClassNotFoundException e) { throw new IOException(e); } this.nestedSerializersSnapshotDelegate = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots( in, userCodeClassLoader); }
Example 6
Source File: EitherSerializerSnapshot.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
private void readV2(DataInputView in, ClassLoader classLoader) throws IOException { nestedSnapshot = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots(in, classLoader); }
Example 7
Source File: GenericArraySerializerConfigSnapshot.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
private void readV2(DataInputView in, ClassLoader classLoader) throws IOException { componentClass = InstantiationUtil.resolveClassByName(in, classLoader); nestedSnapshot = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots(in, classLoader); }
Example 8
Source File: EitherSerializerSnapshot.java From flink with Apache License 2.0 | 4 votes |
private void readV2(DataInputView in, ClassLoader classLoader) throws IOException { nestedSnapshot = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots(in, classLoader); }
Example 9
Source File: GenericArraySerializerConfigSnapshot.java From flink with Apache License 2.0 | 4 votes |
private void readV2(DataInputView in, ClassLoader classLoader) throws IOException { componentClass = InstantiationUtil.resolveClassByName(in, classLoader); nestedSnapshot = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots(in, classLoader); }
Example 10
Source File: EitherSerializerSnapshot.java From flink with Apache License 2.0 | 4 votes |
private void readV2(DataInputView in, ClassLoader classLoader) throws IOException { nestedSnapshot = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots(in, classLoader); }
Example 11
Source File: GenericArraySerializerConfigSnapshot.java From flink with Apache License 2.0 | 4 votes |
private void readV2(DataInputView in, ClassLoader classLoader) throws IOException { componentClass = InstantiationUtil.resolveClassByName(in, classLoader); nestedSnapshot = NestedSerializersSnapshotDelegate.readNestedSerializerSnapshots(in, classLoader); }