Uses of Interface
org.apache.tinkerpop.gremlin.server.OpProcessor
-
-
Uses of OpProcessor in org.apache.tinkerpop.gremlin.server
Method parameters in org.apache.tinkerpop.gremlin.server with type arguments of type OpProcessor Modifier and Type Method Description Optional<Settings.ProcessorSettings>
Settings. optionalProcessor(Class<? extends OpProcessor> clazz)
Find theSettings.ProcessorSettings
related to the specified class. -
Uses of OpProcessor in org.apache.tinkerpop.gremlin.server.op
Classes in org.apache.tinkerpop.gremlin.server.op that implement OpProcessor Modifier and Type Class Description class
AbstractEvalOpProcessor
A baseOpProcessor
implementation that helps with operations that deal with script evaluation functions.class
AbstractOpProcessor
A baseOpProcessor
implementation that processes anIterator
of results in a generalized way while ensuring that graph transactions are properly managed.Methods in org.apache.tinkerpop.gremlin.server.op that return types with arguments of type OpProcessor Modifier and Type Method Description static Optional<OpProcessor>
OpLoader. getProcessor(String name)
Gets anOpProcessor
by its name.static Map<String,OpProcessor>
OpLoader. getProcessors()
Gets a read-only map of the processors where the key is theOpProcessor
name and the value is the instance created byServiceLoader
. -
Uses of OpProcessor in org.apache.tinkerpop.gremlin.server.op.session
Classes in org.apache.tinkerpop.gremlin.server.op.session that implement OpProcessor Modifier and Type Class Description class
SessionOpProcessor
SimpleOpProcessor
implementation that handlesScriptEngine
script evaluation in the context of a session. -
Uses of OpProcessor in org.apache.tinkerpop.gremlin.server.op.standard
Classes in org.apache.tinkerpop.gremlin.server.op.standard that implement OpProcessor Modifier and Type Class Description class
StandardOpProcessor
SimpleOpProcessor
implementation that handlesScriptEngine
script evaluation outside the context of a session. -
Uses of OpProcessor in org.apache.tinkerpop.gremlin.server.op.traversal
Classes in org.apache.tinkerpop.gremlin.server.op.traversal that implement OpProcessor Modifier and Type Class Description class
TraversalOpProcessor
SimpleOpProcessor
implementation that iterates remotely submitted serializedTraversal
objects.
-