Interface VertexComputing
- 
- All Known Implementing Classes:
- ConnectedComponentVertexProgramStep,- PageRankVertexProgramStep,- PeerPressureVertexProgramStep,- ProgramVertexProgramStep,- ShortestPathVertexProgramStep,- TraversalVertexProgramStep,- VertexProgramStep
 
 public interface VertexComputing- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description VertexProgramgenerateProgram(Graph graph, Memory memory)Generate theVertexProgram.ComputergetComputer()Get theComputerfor generating theGraphComputer.voidsetComputer(Computer computer)Set theComputerto be used to generate theGraphComputer.
 
- 
- 
- 
Method Detail- 
setComputervoid setComputer(Computer computer) Set theComputerto be used to generate theGraphComputer.- Parameters:
- computer- the computer specification.
 
 - 
getComputerComputer getComputer() Get theComputerfor generating theGraphComputer. Inferences on the state of theStepwithin theTraversalcan be use applied here.- Returns:
- the computer specification for generating the graph computer.
 
 - 
generateProgramVertexProgram generateProgram(Graph graph, Memory memory) Generate theVertexProgram.
 
- 
 
-