Uses of Class
org.apache.tinkerpop.gremlin.driver.ResultSet
Packages that use ResultSet
Package
Description
-
Uses of ResultSet in org.apache.tinkerpop.gremlin.driver
Fields in org.apache.tinkerpop.gremlin.driver with type parameters of type ResultSetModifier and TypeFieldDescriptionprotected AtomicReference<ResultSet>Channelizer.AbstractChannelizer.pendingMethods in org.apache.tinkerpop.gremlin.driver that return ResultSetModifier and TypeMethodDescriptionSubmits a Gremlin script to the server and returns aResultSetonce the write of the request is complete.Client.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.Submits a Gremlin script to the server and returns aResultSetonce the write of the request is complete.Submits a Gremlin script and bound parameters to the server and returns aResultSetonce the write of the request is complete.Client.submit(String gremlin, RequestOptions options) Submits a Gremlin script to the server and returns aResultSetonce the write of the request is complete.Submits a Gremlin script and blocks until the response is received.Submits a Gremlin script with bound parameters and blocks until the response is received.RequestSubmitter.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 ResultSetModifier and TypeMethodDescriptionClient.AliasClusteredClient.submitAsync(RequestMessage msg) Client.submitAsync(String gremlin) The asynchronous version ofClient.submit(String)where the returned future will complete when the write of the request completes.Deprecated.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.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.Client.submitAsync(RequestMessage msg) A low-level method that allows the submission of a manually constructedRequestMessage.RequestSubmitterAsync.submitAsync(String gremlin) Submits a Gremlin script asynchronously.RequestSubmitterAsync.submitAsync(String gremlin, Map<String, Object> parameters) Submits a Gremlin script with bound parameters asynchronously.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 ResultSetModifierConstructorDescriptionGremlinResponseHandler(AtomicReference<ResultSet> pending, Runnable onResponseComplete, boolean streaming) HttpStreamingResponseHandler(GraphBinaryReader graphBinaryReader, AtomicReference<ResultSet> pendingResultSet, ExecutorService readerPool) HttpStreamingResponseHandler(GraphBinaryReader graphBinaryReader, AtomicReference<ResultSet> pendingResultSet, ExecutorService readerPool, long readTimeoutMillis) -
Uses of ResultSet in org.apache.tinkerpop.gremlin.driver.remote
Methods in org.apache.tinkerpop.gremlin.driver.remote that return ResultSetModifier and TypeMethodDescriptionHttpRemoteTransaction.submit(String gremlin, RequestOptions options) Constructors in org.apache.tinkerpop.gremlin.driver.remote with parameters of type ResultSetModifierConstructorDescriptionDriverRemoteTraversal(ResultSet rs, Client client, boolean attach, Optional<org.apache.commons.configuration2.Configuration> conf) -
Uses of ResultSet in org.apache.tinkerpop.gremlin.driver.stream
Constructors in org.apache.tinkerpop.gremlin.driver.stream with parameters of type ResultSetModifierConstructorDescriptionGraphBinaryStreamResponseReader(Buffer buffer, GraphBinaryReader reader, ResultSet resultSet, AtomicReference<ResultSet> pendingResultSet) Constructor parameters in org.apache.tinkerpop.gremlin.driver.stream with type arguments of type ResultSetModifierConstructorDescriptionGraphBinaryStreamResponseReader(Buffer buffer, GraphBinaryReader reader, ResultSet resultSet, AtomicReference<ResultSet> pendingResultSet)
Client.submitAsync(String, RequestOptions).