public class DriverRemoteConnection extends Object implements RemoteConnection
RemoteConnection
implementation for Gremlin Server. Each DriverServerConnection
is bound to one
graph instance hosted in Gremlin Server.Modifier and Type | Field and Description |
---|---|
static String |
GREMLIN_REMOTE_DRIVER_CLUSTERFILE |
static String |
GREMLIN_REMOTE_DRIVER_SOURCENAME |
GREMLIN_REMOTE, GREMLIN_REMOTE_CONNECTION_CLASS
Constructor and Description |
---|
DriverRemoteConnection(org.apache.commons.configuration2.Configuration conf) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
protected static RequestOptions |
getRequestOptions(Bytecode bytecode) |
<E> CompletableFuture<RemoteTraversal<?,E>> |
submitAsync(Bytecode bytecode)
|
String |
toString() |
Transaction |
tx()
Constructs a new
DriverRemoteTransaction . |
static DriverRemoteConnection |
using(Client client)
Creates a
DriverRemoteConnection using an existing Client object. |
static DriverRemoteConnection |
using(Client client,
String remoteTraversalSourceName)
Creates a
DriverRemoteConnection using an existing Client object. |
static DriverRemoteConnection |
using(Cluster cluster)
Creates a
DriverRemoteConnection from an existing Cluster instance. |
static DriverRemoteConnection |
using(Cluster cluster,
String remoteTraversalSourceName)
Creates a
DriverRemoteConnection from an existing Cluster instance. |
static DriverRemoteConnection |
using(org.apache.commons.configuration2.Configuration conf)
Creates a
DriverRemoteConnection using an Apache Configuration object. |
static DriverRemoteConnection |
using(String clusterConfFile)
Creates a
DriverRemoteConnection using a new Cluster instance created from the supplied
configuration file. |
static DriverRemoteConnection |
using(String host,
int port)
Creates a
DriverRemoteConnection using a new Cluster instance created from the supplied host
and port and binds it to a remote GraphTraversalSource named "g". |
static DriverRemoteConnection |
using(String host,
int port,
String remoteTraversalSourceName)
Creates a
DriverRemoteConnection using a new Cluster instance created from the supplied host
port and aliases it to the specified remote GraphTraversalSource . |
static DriverRemoteConnection |
using(String clusterConfFile,
String remoteTraversalSourceName)
Creates a
DriverRemoteConnection using a new Cluster instance created from the supplied
configuration file. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
from
public static final String GREMLIN_REMOTE_DRIVER_CLUSTERFILE
public static final String GREMLIN_REMOTE_DRIVER_SOURCENAME
public DriverRemoteConnection(org.apache.commons.configuration2.Configuration conf)
public static DriverRemoteConnection using(Client client)
DriverRemoteConnection
using an existing Client
object. The Client
will not
be closed on calls to close()
.public static DriverRemoteConnection using(Client client, String remoteTraversalSourceName)
DriverRemoteConnection
using an existing Client
object. The Client
will not
be closed on calls to close()
.public static DriverRemoteConnection using(String host, int port)
DriverRemoteConnection
using a new Cluster
instance created from the supplied host
and port and binds it to a remote GraphTraversalSource
named "g". When close()
is called,
this new Cluster
is also closed. By default, this method will bind the RemoteConnection
to a
graph on the server named "graph".public static DriverRemoteConnection using(String host, int port, String remoteTraversalSourceName)
DriverRemoteConnection
using a new Cluster
instance created from the supplied host
port and aliases it to the specified remote GraphTraversalSource
. When close()
is called, this
new Cluster
is also closed. By default, this method will bind the RemoteConnection
to the
specified graph traversal source name.public static DriverRemoteConnection using(Cluster cluster)
DriverRemoteConnection
from an existing Cluster
instance. When close()
is
called, the Cluster
is left open for the caller to close. By default, this method will bind the
RemoteConnection
to a graph on the server named "graph".public static DriverRemoteConnection using(Cluster cluster, String remoteTraversalSourceName)
DriverRemoteConnection
from an existing Cluster
instance. When close()
is
called, the Cluster
is left open for the caller to close.public static DriverRemoteConnection using(String clusterConfFile)
DriverRemoteConnection
using a new Cluster
instance created from the supplied
configuration file. When close()
is called, this new Cluster
is also closed. By default,
this method will bind the RemoteConnection
to a graph on the server named "graph".public static DriverRemoteConnection using(String clusterConfFile, String remoteTraversalSourceName)
DriverRemoteConnection
using a new Cluster
instance created from the supplied
configuration file. When close()
is called, this new Cluster
is also closed.public static DriverRemoteConnection using(org.apache.commons.configuration2.Configuration conf)
DriverRemoteConnection
using an Apache Configuration
object. The
Configuration
object should contain one of two required keys, either: clusterConfigurationFile
or clusterConfiguration
. The clusterConfigurationFile
key is a pointer to a file location
containing a configuration for a Cluster
. The clusterConfiguration
should contain the actual
contents of a configuration that would be used by a Cluster
. This configuration
may also
contain the optional, but likely necessary, remoteTraversalSourceName
which tells the
DriverServerConnection
which graph on the server to bind to.public <E> CompletableFuture<RemoteTraversal<?,E>> submitAsync(Bytecode bytecode) throws RemoteConnectionException
RemoteConnection
Traversal
Bytecode
to a server and returns a promise of a RemoteTraversal
.
The RemoteTraversal
is an abstraction over two types of results that can be returned as part of the
response from the server: the results of the Traversal
itself and the side-effects that it produced.submitAsync
in interface RemoteConnection
RemoteConnectionException
protected static RequestOptions getRequestOptions(Bytecode bytecode)
public void close() throws Exception
close
in interface AutoCloseable
Exception
public Transaction tx()
DriverRemoteTransaction
.tx
in interface RemoteConnection
Copyright © 2013–2022 Apache Software Foundation. All rights reserved.