Uses of Interface
org.apache.tinkerpop.gremlin.process.computer.GraphComputer
-
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin
Methods in org.apache.tinkerpop.gremlin that return GraphComputer Modifier and Type Method Description GraphComputer
GraphManager.ManagedGraphProvider. getGraphComputer(Graph graph)
default GraphComputer
GraphProvider. getGraphComputer(Graph graph)
Create aGraphComputer
from theGraph
instance.Methods in org.apache.tinkerpop.gremlin that return types with arguments of type GraphComputer Modifier and Type Method Description Class<? extends GraphComputer>
computer()
TheGraphComputer
implementation that theGraphProvider
will use when it constructs aTraversal
withGraphProvider.traversal(Graph)
orGraphProvider.traversal(Graph, TraversalStrategy[])
. -
Uses of GraphComputer in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential
Method parameters in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential with type arguments of type GraphComputer Modifier and Type Method Description CredentialTraversalSource
CredentialTraversalSource. withComputer(Class<? extends GraphComputer> graphComputerClass)
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.process.computer
Classes in org.apache.tinkerpop.gremlin.process.computer that implement GraphComputer Modifier and Type Class Description static class
GraphComputerTest.BadGraphComputer
Methods in org.apache.tinkerpop.gremlin.process.computer that return GraphComputer Modifier and Type Method Description GraphComputer
Computer. apply(Graph graph)
default GraphComputer
GraphComputer. configure(String key, Object value)
Set an arbitrary configuration key/value for the underlyingConfiguration
in theGraphComputer
.GraphComputer
GraphComputerTest.BadGraphComputer. configure(String key, Object value)
GraphComputer
GraphComputer. edges(Traversal<Vertex,Edge> edgeFilter)
Add a filter that will limit which edges of the vertices are loaded from the graph source.GraphComputer
GraphComputerTest.BadGraphComputer. edges(Traversal<Vertex,Edge> edgeFilter)
GraphComputer
GraphComputer. mapReduce(MapReduce mapReduce)
Add aMapReduce
job to the set of MapReduce jobs to be executed by theGraphComputer
.GraphComputer
GraphComputerTest.BadGraphComputer. mapReduce(MapReduce mapReduce)
GraphComputer
GraphComputer. persist(GraphComputer.Persist persist)
Set theGraphComputer.Persist
level of the computation.GraphComputer
GraphComputerTest.BadGraphComputer. persist(GraphComputer.Persist persist)
GraphComputer
GraphComputer. program(VertexProgram vertexProgram)
Set theVertexProgram
to be executed by theGraphComputer
.GraphComputer
GraphComputerTest.BadGraphComputer. program(VertexProgram vertexProgram)
GraphComputer
GraphComputer. result(GraphComputer.ResultGraph resultGraph)
Set theGraphComputer.ResultGraph
of the computation.GraphComputer
GraphComputerTest.BadGraphComputer. result(GraphComputer.ResultGraph resultGraph)
GraphComputer
GraphComputer. vertexProperties(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)
Add a filter that will limit which vertex properties are loaded from the graph source.GraphComputer
GraphComputerTest.BadGraphComputer. vertexProperties(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)
GraphComputer
GraphComputer. vertices(Traversal<Vertex,Vertex> vertexFilter)
Add a filter that will limit which vertices are loaded from the graph source.GraphComputer
GraphComputerTest.BadGraphComputer. vertices(Traversal<Vertex,Vertex> vertexFilter)
GraphComputer
GraphComputer. workers(int workers)
Set the desired number of workers to execute theVertexProgram
andMapReduce
jobs.GraphComputer
GraphComputerTest.BadGraphComputer. workers(int workers)
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 Computer
Computer. compute(Class<? extends GraphComputer> graphComputerClass)
Computer
Computer. graphComputer(Class<? extends GraphComputer> graphComputerClass)
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.decoration
Method parameters in org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.decoration with type arguments of type GraphComputer Modifier and Type Method Description VertexProgramStrategy.Builder
VertexProgramStrategy.Builder. graphComputer(Class<? extends GraphComputer> graphComputerClass)
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.process.computer.util
Methods in org.apache.tinkerpop.gremlin.process.computer.util with type parameters of type GraphComputer Modifier and Type Method Description <C extends GraphComputer>
CComputerGraph. compute(Class<C> graphComputerClass)
Methods in org.apache.tinkerpop.gremlin.process.computer.util that return GraphComputer Modifier and Type Method Description GraphComputer
ComputerGraph. compute()
Methods in org.apache.tinkerpop.gremlin.process.computer.util with parameters of type GraphComputer Modifier and Type Method Description static void
GraphComputerHelper. validateProgramOnComputer(GraphComputer computer, VertexProgram vertexProgram)
-
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 TraversalSource
TraversalSource. withComputer(Class<? extends GraphComputer> graphComputerClass)
Add aGraphComputer
class 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 GraphTraversalSource
GraphTraversalSource. withComputer(Class<? extends GraphComputer> graphComputerClass)
Add aGraphComputer
class 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 theGraphComputer
to use for OLAP operations on the graph.<C extends GraphComputer>
CRemoteGraph. compute(Class<C> graphComputerClass)
Methods in org.apache.tinkerpop.gremlin.structure that return GraphComputer Modifier and Type Method Description GraphComputer
Graph. compute()
Generate aGraphComputer
using the default engine of the underlying graph system.GraphComputer
RemoteGraph. compute()
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.structure.util
Methods in org.apache.tinkerpop.gremlin.structure.util with parameters of type GraphComputer Modifier and Type Method Description static String
StringFactory. graphComputerString(GraphComputer graphComputer)
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.structure.util.empty
Methods in org.apache.tinkerpop.gremlin.structure.util.empty with type parameters of type GraphComputer Modifier and Type Method Description <C extends GraphComputer>
CEmptyGraph. compute(Class<C> graphComputerClass)
Methods in org.apache.tinkerpop.gremlin.structure.util.empty that return GraphComputer Modifier and Type Method Description GraphComputer
EmptyGraph. compute()
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.structure.util.star
Methods in org.apache.tinkerpop.gremlin.structure.util.star with type parameters of type GraphComputer Modifier and Type Method Description <C extends GraphComputer>
CStarGraph. compute(Class<C> graphComputerClass)
Methods in org.apache.tinkerpop.gremlin.structure.util.star that return GraphComputer Modifier and Type Method Description GraphComputer
StarGraph. compute()
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.tinkergraph.process.computer
Classes in org.apache.tinkerpop.gremlin.tinkergraph.process.computer that implement GraphComputer Modifier and Type Class Description class
TinkerGraphComputer
Methods in org.apache.tinkerpop.gremlin.tinkergraph.process.computer that return GraphComputer Modifier and Type Method Description GraphComputer
TinkerGraphComputer. edges(Traversal<Vertex,Edge> edgeFilter)
GraphComputer
TinkerGraphComputer. mapReduce(MapReduce mapReduce)
GraphComputer
TinkerGraphComputer. persist(GraphComputer.Persist persist)
GraphComputer
TinkerGraphComputer. program(VertexProgram vertexProgram)
GraphComputer
TinkerGraphComputer. result(GraphComputer.ResultGraph resultGraph)
GraphComputer
TinkerGraphComputer. vertexProperties(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)
GraphComputer
TinkerGraphComputer. vertices(Traversal<Vertex,Vertex> vertexFilter)
GraphComputer
TinkerGraphComputer. workers(int workers)
-
Uses of GraphComputer in org.apache.tinkerpop.gremlin.tinkergraph.structure
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure with type parameters of type GraphComputer Modifier and Type Method Description <C extends GraphComputer>
CTinkerGraph. compute(Class<C> graphComputerClass)
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return GraphComputer Modifier and Type Method Description GraphComputer
TinkerGraph. compute()
-