Class GremlinScriptChecker.Result
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.jsr223.GremlinScriptChecker.Result
-
- Enclosing class:
- GremlinScriptChecker
public static class GremlinScriptChecker.Result extends Object
A result returned from aGremlinScriptChecker.parse(String)
of a Gremlin string.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>
getRequestId()
Gets the value of the request identifier supplied using thewith()
source step.Optional<Long>
getTimeout()
Gets the value of the timeouts that were set using thewith()
source step.String
toString()
-
-
-
Method Detail
-
getTimeout
public final Optional<Long> getTimeout()
Gets the value of the timeouts that were set using thewith()
source step. If there are multiple commands using this step, the timeouts are summed together.
-
getRequestId
public Optional<String> getRequestId()
Gets the value of the request identifier supplied using thewith()
source step. If there are multiple commands using this step, the last usage should represent the id returned here.
-
-