Class GraphComputerTest.BadGraphComputer
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.computer.GraphComputerTest.BadGraphComputer
-
- All Implemented Interfaces:
GraphComputer
- Enclosing class:
- GraphComputerTest
public static class GraphComputerTest.BadGraphComputer extends Object implements GraphComputer
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer
GraphComputer.Exceptions, GraphComputer.Features, GraphComputer.Persist, GraphComputer.ResultGraph
-
-
Constructor Summary
Constructors Constructor Description BadGraphComputer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphComputerconfigure(String key, Object value)GraphComputeredges(Traversal<Vertex,Edge> edgeFilter)GraphComputer.Featuresfeatures()GraphComputermapReduce(MapReduce mapReduce)GraphComputerpersist(GraphComputer.Persist persist)GraphComputerprogram(VertexProgram vertexProgram)GraphComputerresult(GraphComputer.ResultGraph resultGraph)Future<ComputerResult>submit()GraphComputervertexProperties(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)GraphComputervertices(Traversal<Vertex,Vertex> vertexFilter)GraphComputerworkers(int workers)
-
-
-
Method Detail
-
result
public GraphComputer result(GraphComputer.ResultGraph resultGraph)
- Specified by:
resultin interfaceGraphComputer
-
persist
public GraphComputer persist(GraphComputer.Persist persist)
- Specified by:
persistin interfaceGraphComputer
-
program
public GraphComputer program(VertexProgram vertexProgram)
- Specified by:
programin interfaceGraphComputer
-
mapReduce
public GraphComputer mapReduce(MapReduce mapReduce)
- Specified by:
mapReducein interfaceGraphComputer
-
workers
public GraphComputer workers(int workers)
- Specified by:
workersin interfaceGraphComputer
-
vertices
public GraphComputer vertices(Traversal<Vertex,Vertex> vertexFilter)
- Specified by:
verticesin interfaceGraphComputer
-
edges
public GraphComputer edges(Traversal<Vertex,Edge> edgeFilter)
- Specified by:
edgesin interfaceGraphComputer
-
vertexProperties
public GraphComputer vertexProperties(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)
- Specified by:
vertexPropertiesin interfaceGraphComputer
-
configure
public GraphComputer configure(String key, Object value)
- Specified by:
configurein interfaceGraphComputer
-
submit
public Future<ComputerResult> submit()
- Specified by:
submitin interfaceGraphComputer
-
features
public GraphComputer.Features features()
- Specified by:
featuresin interfaceGraphComputer
-
-