Package org.apache.flink.core.memory

Examples of org.apache.flink.core.memory.DataInputViewStream


    this.allowQueuedScheduling = in.readBoolean();
   
    final int numVertices = in.readInt();
   
    @SuppressWarnings("resource")
    ObjectInputStream ois = new ObjectInputStream(new DataInputViewStream(in));
    for (int i = 0; i < numVertices; i++) {
      try {
        AbstractJobVertex vertex = (AbstractJobVertex) ois.readObject();
        taskVertices.put(vertex.getID(), vertex);
      }
View Full Code Here

TOP

Related Classes of org.apache.flink.core.memory.DataInputViewStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.