Class CloneVertexProgram

  • All Implemented Interfaces:
    Cloneable, VertexProgram<org.javatuples.Tuple>

    public class CloneVertexProgram
    extends Object
    implements VertexProgram<org.javatuples.Tuple>
    Author:
    Daniel Kuppitz (http://gremlin.guru)
    • Method Detail

      • setup

        public void setup​(Memory memory)
        Description copied from interface: VertexProgram
        The method is called at the beginning of the computation. The method is global to the GraphComputer and as such, is not called for each vertex. During this stage, the Memory should be initialized to to its "start state."
        Specified by:
        setup in interface VertexProgram<org.javatuples.Tuple>
        Parameters:
        memory - The global memory of the GraphComputer
      • execute

        public void execute​(Vertex sourceVertex,
                            Messenger<org.javatuples.Tuple> messenger,
                            Memory memory)
        Description copied from interface: VertexProgram
        This method denotes the main body of the computation and is executed on each vertex in the graph. This method is logically executed in parallel on all vertices in the graph. When the Memory is read, it is according to the aggregated state yielded in the previous iteration. When the Memory is written, the data will be aggregated at the end of the iteration for reading in the next iteration.
        Specified by:
        execute in interface VertexProgram<org.javatuples.Tuple>
        Parameters:
        sourceVertex - the Vertex to execute the VertexProgram on
        messenger - the messenger that moves data between vertices
        memory - the shared state between all vertices in the computation
      • terminate

        public boolean terminate​(Memory memory)
        Description copied from interface: VertexProgram
        The method is called at the end of each iteration to determine if the computation is complete. The method is global to the GraphComputer and as such, is not called for each Vertex. The Memory maintains the aggregated data from the last execute() iteration.
        Specified by:
        terminate in interface VertexProgram<org.javatuples.Tuple>
        Parameters:
        memory - The global memory of the GraphComputer
        Returns:
        whether or not to halt the computation
      • getMessageScopes

        public Set<MessageScope> getMessageScopes​(Memory memory)
        Description copied from interface: VertexProgram
        This method returns all the MessageScope possibilities for a particular iteration of the vertex program. The returned messages scopes are the scopes that will be used to send messages during the stated iteration. It is not a requirement that all stated messages scopes be used, just that it is possible that they be used during the iteration.
        Specified by:
        getMessageScopes in interface VertexProgram<org.javatuples.Tuple>
        Parameters:
        memory - an immutable form of the Memory
        Returns:
        all possible message scopes during said vertex program iteration