Package org.apache.giraph.jython.factories

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


        interpreter));
    types.setVertexValueClass(initValueType(conf, GraphType.VERTEX_VALUE,
        jythonJob.getVertex_value().getType(), new JythonVertexValueFactory(),
        interpreter));
    types.setEdgeValueClass(initValueType(conf, GraphType.EDGE_VALUE,
        jythonJob.getEdge_value().getType(), new JythonEdgeValueFactory(),
        interpreter));
    types.setIncomingMessageValueClass(
        initValueType(conf, GraphType.INCOMING_MESSAGE_VALUE,
            jythonJob.getIncoming_message_value().getType(),
            new JythonIncomingMessageValueFactory(), interpreter));
View Full Code Here

TOP

Related Classes of org.apache.giraph.jython.factories.JythonEdgeValueFactory

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.