Uses of Class
org.apache.tinkerpop.gremlin.driver.ResultSet
-
Packages that use ResultSet Package Description org.apache.tinkerpop.gremlin.driver -
-
Uses of ResultSet in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver that return ResultSet Modifier and Type Method Description ResultSet
Client.ClusteredClient. submit(String gremlin, String graphOrTraversalSource)
Submits a Gremlin script to the server and returns aResultSet
once the write of the request is complete.ResultSet
Client.ClusteredClient. submit(String gremlin, String graphOrTraversalSource, Map<String,Object> parameters)
Submits a Gremlin script and bound parameters to the server and returns aResultSet
once the write of the request is complete.ResultSet
Client. submit(String gremlin)
Submits a Gremlin script to the server and returns aResultSet
once the write of the request is complete.ResultSet
Client. submit(String gremlin, Map<String,Object> parameters)
Submits a Gremlin script and bound parameters to the server and returns aResultSet
once the write of the request is complete.ResultSet
Client. submit(String gremlin, RequestOptions options)
Submits a Gremlin script to the server and returns aResultSet
once the write of the request is complete.ResultSet
Client. submit(Bytecode bytecode)
Submit aBytecode
to the server for remote execution.ResultSet
Client. submit(Bytecode bytecode, RequestOptions options)
A version ofClient.submit(Bytecode)
which provides the ability to set per-request options.ResultSet
Client. submit(Traversal traversal)
Submit aTraversal
to the server for remote execution.Results are returned asTraverser
instances and are therefore bulked, meaning that to properly iterate the contents of the result eachTraverser.bulk()
must be examined to determine the number of times that object should be presented in iteration.Methods in org.apache.tinkerpop.gremlin.driver that return types with arguments of type ResultSet Modifier and Type Method Description CompletableFuture<ResultSet>
Client.AliasClusteredClient. submitAsync(Bytecode bytecode)
CompletableFuture<ResultSet>
Client.AliasClusteredClient. submitAsync(Bytecode bytecode, RequestOptions options)
CompletableFuture<ResultSet>
Client.AliasClusteredClient. submitAsync(Traversal traversal)
CompletableFuture<ResultSet>
Client.AliasClusteredClient. submitAsync(org.apache.tinkerpop.gremlin.util.message.RequestMessage msg)
CompletableFuture<ResultSet>
Client. submitAsync(String gremlin)
The asynchronous version ofClient.submit(String)
where the returned future will complete when the write of the request completes.CompletableFuture<ResultSet>
Client. submitAsync(String gremlin, String graphOrTraversalSource, Map<String,Object> parameters)
Deprecated.As of release 3.4.0, replaced byClient.submitAsync(String, RequestOptions)
.CompletableFuture<ResultSet>
Client. submitAsync(String gremlin, Map<String,Object> parameters)
The asynchronous version ofClient.submit(String, Map)
} where the returned future will complete when the write of the request completes.CompletableFuture<ResultSet>
Client. submitAsync(String gremlin, Map<String,String> aliases, Map<String,Object> parameters)
Deprecated.As of release 3.4.0, replaced byClient.submitAsync(String, RequestOptions)
.CompletableFuture<ResultSet>
Client. submitAsync(String gremlin, RequestOptions options)
The asynchronous version ofClient.submit(String, RequestOptions)
} where the returned future will complete when the write of the request completes.CompletableFuture<ResultSet>
Client. submitAsync(Bytecode bytecode)
An asynchronous version ofClient.submit(Traversal)
.CompletableFuture<ResultSet>
Client. submitAsync(Bytecode bytecode, RequestOptions options)
A version ofClient.submit(Bytecode)
which provides the ability to set per-request options.CompletableFuture<ResultSet>
Client. submitAsync(Traversal traversal)
An asynchronous version ofClient.submit(Traversal)
.CompletableFuture<ResultSet>
Client. submitAsync(org.apache.tinkerpop.gremlin.util.message.RequestMessage msg)
A low-level method that allows the submission of a manually constructedRequestMessage
.
-