Class Client.AliasClusteredClient
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.driver.Client
-
- org.apache.tinkerpop.gremlin.driver.Client.AliasClusteredClient
-
- Enclosing class:
- Client
public static class Client.AliasClusteredClient extends Client
Uses aClient.ClusteredClient
that rebinds requests to a specifiedGraph
orTraversalSource
instances on the server-side.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.tinkerpop.gremlin.driver.Client
Client.AliasClusteredClient, Client.ClusteredClient
-
-
Field Summary
-
Fields inherited from class org.apache.tinkerpop.gremlin.driver.Client
cluster, initialized, TOO_MANY_IN_FLIGHT_REQUESTS
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Client
alias(String graphOrTraversalSource)
Create a newClient
that aliases the specifiedGraph
orTraversalSource
name on the server to a variable called "g" for the context of the requests made through thatClient
.org.apache.tinkerpop.gremlin.util.message.RequestMessage.Builder
buildMessage(org.apache.tinkerpop.gremlin.util.message.RequestMessage.Builder builder)
Makes any initial changes to the builder and returns the constructedRequestMessage
.protected org.apache.tinkerpop.gremlin.driver.Connection
chooseConnection(org.apache.tinkerpop.gremlin.util.message.RequestMessage msg)
Delegates to the underlyingClient.ClusteredClient
.void
close()
Closes the client by making a synchronous call toClient.closeAsync()
.CompletableFuture<Void>
closeAsync()
Asynchronous close of theClient
.Client
init()
Initializes the client which typically means that a connection is established to the server.protected void
initializeImplementation()
Called in theClient.init()
method.boolean
isClosing()
CompletableFuture<ResultSet>
submitAsync(org.apache.tinkerpop.gremlin.util.message.RequestMessage msg)
A low-level method that allows the submission of a manually constructedRequestMessage
.-
Methods inherited from class org.apache.tinkerpop.gremlin.driver.Client
getCluster, submit, submit, submit, submitAsync, submitAsync, submitAsync, submitAsync
-
-
-
-
Method Detail
-
submitAsync
public CompletableFuture<ResultSet> submitAsync(org.apache.tinkerpop.gremlin.util.message.RequestMessage msg)
Description copied from class:Client
A low-level method that allows the submission of a manually constructedRequestMessage
.- Overrides:
submitAsync
in classClient
-
init
public Client init()
Description copied from class:Client
Initializes the client which typically means that a connection is established to the server. Depending on the implementation and configuration this blocking call may take some time. This method will be called automatically if it is not called directly and multiple calls will not have effect.
-
buildMessage
public org.apache.tinkerpop.gremlin.util.message.RequestMessage.Builder buildMessage(org.apache.tinkerpop.gremlin.util.message.RequestMessage.Builder builder)
Description copied from class:Client
Makes any initial changes to the builder and returns the constructedRequestMessage
. Implementers may choose to override this message to append data to the request before sending. By default, this method will simply return thebuilder
passed in by the caller.- Overrides:
buildMessage
in classClient
-
initializeImplementation
protected void initializeImplementation()
Description copied from class:Client
Called in theClient.init()
method.- Specified by:
initializeImplementation
in classClient
-
chooseConnection
protected org.apache.tinkerpop.gremlin.driver.Connection chooseConnection(org.apache.tinkerpop.gremlin.util.message.RequestMessage msg) throws TimeoutException, org.apache.tinkerpop.gremlin.driver.exception.ConnectionException
Delegates to the underlyingClient.ClusteredClient
.- Specified by:
chooseConnection
in classClient
- Throws:
TimeoutException
org.apache.tinkerpop.gremlin.driver.exception.ConnectionException
-
close
public void close()
Description copied from class:Client
Closes the client by making a synchronous call toClient.closeAsync()
.
-
closeAsync
public CompletableFuture<Void> closeAsync()
Description copied from class:Client
Asynchronous close of theClient
.- Specified by:
closeAsync
in classClient
-
alias
public Client alias(String graphOrTraversalSource)
Create a newClient
that aliases the specifiedGraph
orTraversalSource
name on the server to a variable called "g" for the context of the requests made through thatClient
.
-
-