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 SummaryAll 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.StringtoString()
 
- 
- 
- 
Method Detail- 
getTimeoutpublic 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.
 - 
getRequestIdpublic 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.
 
- 
 
-