Uses of Class
org.apache.tinkerpop.gremlin.driver.ResultSet
-
Packages that use ResultSet Package Description org.apache.tinkerpop.gremlin.driver org.apache.tinkerpop.gremlin.driver.handler org.apache.tinkerpop.gremlin.driver.remote -
-
Uses of ResultSet in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver that return ResultSet Modifier and Type Method Description ResultSetClient.ClusteredClient. submit(String gremlin, String graphOrTraversalSource)Submits a Gremlin script to the server and returns aResultSetonce the write of the request is complete.ResultSetClient.ClusteredClient. submit(String gremlin, String graphOrTraversalSource, Map<String,Object> parameters)Submits a Gremlin script and bound parameters to the server and returns aResultSetonce the write of the request is complete.ResultSetClient. submit(String gremlin)Submits a Gremlin script to the server and returns aResultSetonce the write of the request is complete.ResultSetClient. submit(String gremlin, Map<String,Object> parameters)Submits a Gremlin script and bound parameters to the server and returns aResultSetonce the write of the request is complete.ResultSetClient. submit(String gremlin, RequestOptions options)Submits a Gremlin script to the server and returns aResultSetonce the write of the request is complete.ResultSetRequestSubmitter. submit(String gremlin)Submits a Gremlin script and blocks until the response is received.ResultSetRequestSubmitter. submit(String gremlin, Map<String,Object> parameters)Submits a Gremlin script with bound parameters and blocks until the response is received.ResultSetRequestSubmitter. submit(String gremlin, RequestOptions options)Submits a Gremlin script with request options and blocks until the response is received.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(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, 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(RequestMessage msg)A low-level method that allows the submission of a manually constructedRequestMessage.CompletableFuture<ResultSet>RequestSubmitterAsync. submitAsync(String gremlin)Submits a Gremlin script asynchronously.CompletableFuture<ResultSet>RequestSubmitterAsync. submitAsync(String gremlin, Map<String,Object> parameters)Submits a Gremlin script with bound parameters asynchronously.CompletableFuture<ResultSet>RequestSubmitterAsync. submitAsync(String gremlin, RequestOptions options)Submits a Gremlin script with request options asynchronously. -
Uses of ResultSet in org.apache.tinkerpop.gremlin.driver.handler
Constructor parameters in org.apache.tinkerpop.gremlin.driver.handler with type arguments of type ResultSet Constructor Description GremlinResponseHandler(AtomicReference<ResultSet> pending) -
Uses of ResultSet in org.apache.tinkerpop.gremlin.driver.remote
Methods in org.apache.tinkerpop.gremlin.driver.remote that return ResultSet Modifier and Type Method Description ResultSetHttpRemoteTransaction. submit(String gremlin)ResultSetHttpRemoteTransaction. submit(String gremlin, Map<String,Object> parameters)ResultSetHttpRemoteTransaction. submit(String gremlin, RequestOptions options)Constructors in org.apache.tinkerpop.gremlin.driver.remote with parameters of type ResultSet Constructor Description DriverRemoteTraversal(ResultSet rs, Client client, boolean attach, Optional<org.apache.commons.configuration2.Configuration> conf)
-