Examples of JythonVertexIdFactory


Examples of org.apache.giraph.jython.factories.JythonVertexIdFactory

   */
  private static void initGraphTypes(Configuration conf,
      JythonJob jythonJob, PythonInterpreter interpreter) {
    GiraphTypes types = new GiraphTypes();
    types.setVertexIdClass(initValueType(conf, GraphType.VERTEX_ID,
        jythonJob.getVertex_id().getType(), new JythonVertexIdFactory(),
        interpreter));
    types.setVertexValueClass(initValueType(conf, GraphType.VERTEX_VALUE,
        jythonJob.getVertex_value().getType(), new JythonVertexValueFactory(),
        interpreter));
    types.setEdgeValueClass(initValueType(conf, GraphType.EDGE_VALUE,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.