Class Settings
java.lang.Object
org.apache.tinkerpop.gremlin.driver.Settings
Settings for the
Cluster and its related components.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic class -
Field Summary
FieldsModifier and TypeFieldDescriptionSettings for authentication.booleanToggles if result from server is bulked.org.apache.tinkerpop.gremlin.driver.Settings.ConnectionPoolSettingsSettings for connections and connection pool.booleanToggles if user agent should be sent in web socket handshakes.The list of hosts that the driver will connect to.intThe size of the thread pool defaulted to the number of available processors.The path to the Gremlin service which is defaulted to "/gremlin".intThe port of the Gremlin Server to connect to which defaults to8182.The serializer used to deserialize responses from the server.intThe number of worker threads defaulted to the number of available processors * 2. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
port
public int portThe port of the Gremlin Server to connect to which defaults to8182. The same port will be applied for allhosts. -
path
The path to the Gremlin service which is defaulted to "/gremlin". -
hosts
The list of hosts that the driver will connect to. -
responseSerializer
The serializer used to deserialize responses from the server. This selects the encoding requested via theAcceptheader; requests are always sent as JSON regardless of this setting. Note that this serializer should be supported by the server configuration. -
connectionPool
public org.apache.tinkerpop.gremlin.driver.Settings.ConnectionPoolSettings connectionPoolSettings for connections and connection pool. -
auth
Settings for authentication. -
nioPoolSize
public int nioPoolSizeThe size of the thread pool defaulted to the number of available processors. -
workerPoolSize
public int workerPoolSizeThe number of worker threads defaulted to the number of available processors * 2. -
enableUserAgentOnConnect
public boolean enableUserAgentOnConnectToggles if user agent should be sent in web socket handshakes. -
bulkResults
public boolean bulkResultsToggles if result from server is bulked. Default is false.
-
-
Constructor Details
-
Settings
public Settings()
-
-
Method Details