Uses of Interface
org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.process.computer
Methods in org.apache.tinkerpop.gremlin.process.computer that return GraphComputer Modifier and Type Method Description GraphComputerComputer. apply(Graph graph)default GraphComputerGraphComputer. configure(String key, Object value)Set an arbitrary configuration key/value for the underlyingConfigurationin theGraphComputer.GraphComputerGraphComputer. edges(Traversal<Vertex,Edge> edgeFilter)Add a filter that will limit which edges of the vertices are loaded from the graph source.GraphComputerGraphComputer. mapReduce(MapReduce mapReduce)Add aMapReducejob to the set of MapReduce jobs to be executed by theGraphComputer.GraphComputerGraphComputer. persist(GraphComputer.Persist persist)Set theGraphComputer.Persistlevel of the computation.GraphComputerGraphComputer. program(VertexProgram vertexProgram)Set theVertexProgramto be executed by theGraphComputer.GraphComputerGraphComputer. result(GraphComputer.ResultGraph resultGraph)Set theGraphComputer.ResultGraphof the computation.GraphComputerGraphComputer. vertices(Traversal<Vertex,Vertex> vertexFilter)Add a filter that will limit which vertices are loaded from the graph source.GraphComputerGraphComputer. workers(int workers)Set the desired number of workers to execute theVertexProgramandMapReducejobs.Methods in org.apache.tinkerpop.gremlin.process.computer that return types with arguments of type GraphComputer Modifier and Type Method Description Class<? extends GraphComputer>Computer. getGraphComputerClass()Method parameters in org.apache.tinkerpop.gremlin.process.computer with type arguments of type GraphComputer Modifier and Type Method Description static ComputerComputer. compute(Class<? extends GraphComputer> graphComputerClass)ComputerComputer. graphComputer(Class<? extends GraphComputer> graphComputerClass) -
Uses of GraphComputer in org.apache.tinkerpop.gremlin.process.traversal
Method parameters in org.apache.tinkerpop.gremlin.process.traversal with type arguments of type GraphComputer Modifier and Type Method Description default TraversalSourceTraversalSource. withComputer(Class<? extends GraphComputer> graphComputerClass)Add aGraphComputerclass used to execute the traversal. -
Uses of GraphComputer in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
Method parameters in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph with type arguments of type GraphComputer Modifier and Type Method Description GraphTraversalSourceGraphTraversalSource. withComputer(Class<? extends GraphComputer> graphComputerClass)Add aGraphComputerclass used to execute the traversal. -
Uses of GraphComputer in org.apache.tinkerpop.gremlin.structure
Methods in org.apache.tinkerpop.gremlin.structure with type parameters of type GraphComputer Modifier and Type Method Description <C extends GraphComputer>
CGraph. compute(Class<C> graphComputerClass)Declare theGraphComputerto use for OLAP operations on the graph.Methods in org.apache.tinkerpop.gremlin.structure that return GraphComputer Modifier and Type Method Description GraphComputerGraph. compute()Generate aGraphComputerusing the default engine of the underlying graph system.
-