Uses of Class
org.apache.tinkerpop.gremlin.driver.RequestOptions
-
Packages that use RequestOptions Package Description org.apache.tinkerpop.gremlin.driver -
-
Uses of RequestOptions in org.apache.tinkerpop.gremlin.driver
Fields in org.apache.tinkerpop.gremlin.driver declared as RequestOptions Modifier and Type Field Description static RequestOptions
RequestOptions. EMPTY
Methods in org.apache.tinkerpop.gremlin.driver that return RequestOptions Modifier and Type Method Description RequestOptions
RequestOptions.Builder. create()
Methods in org.apache.tinkerpop.gremlin.driver with parameters of type RequestOptions Modifier and Type Method Description 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, RequestOptions options)
A version ofClient.submit(Bytecode)
which provides the ability to set per-request options.CompletableFuture<ResultSet>
Client.AliasClusteredClient. submitAsync(Bytecode bytecode, RequestOptions options)
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, RequestOptions options)
A version ofClient.submit(Bytecode)
which provides the ability to set per-request options.
-