GraphLab Project

Uses of Interface
graphlab.library.event.handlers.PreWorkHandler

Packages that use PreWorkHandler
graphlab.library   
graphlab.library.algorithms.traversal   
graphlab.library.event.handlers   
 

Uses of PreWorkHandler in graphlab.library
 

Methods in graphlab.library with parameters of type PreWorkHandler
 boolean MatrixGraph.breadthFirstSearch(VertexType vertex, PreWorkHandler<VertexType> handler)
          Runs Breadth First Search (BFS) algorithm on the graph starting from vertex vertexId.
 

Uses of PreWorkHandler in graphlab.library.algorithms.traversal
 

Methods in graphlab.library.algorithms.traversal with parameters of type PreWorkHandler
 boolean BreadthFirstSearch.doSearch(VertexType vertex, PreWorkHandler<VertexType> handler)
           
 

Uses of PreWorkHandler in graphlab.library.event.handlers
 

Subinterfaces of PreWorkHandler in graphlab.library.event.handlers
 interface PreWorkPostWorkHandler<VertexType extends BaseVertex>
          Handles both prework and postwork used by algorithms such as DFS and BFS.
 


GraphLab Project