Uses of Class
org.apache.tinkerpop.gremlin.server.Settings
-
Packages that use Settings Package Description org.apache.tinkerpop.gremlin.server org.apache.tinkerpop.gremlin.server.handler org.apache.tinkerpop.gremlin.server.util -
-
Uses of Settings in org.apache.tinkerpop.gremlin.server
Fields in org.apache.tinkerpop.gremlin.server declared as Settings Modifier and Type Field Description protected Settings
AbstractChannelizer. settings
Methods in org.apache.tinkerpop.gremlin.server that return Settings Modifier and Type Method Description Settings
Context. getSettings()
Gets the current configuration of Gremlin Server.static Settings
Settings. read(InputStream stream)
Read configuration from a file into a newSettings
object.static Settings
Settings. read(String file)
Read configuration from a file into a newSettings
object.Methods in org.apache.tinkerpop.gremlin.server with parameters of type Settings Modifier and Type Method Description protected AbstractAuthenticationHandler
AbstractChannelizer. createAuthenticationHandler(Settings settings)
Constructors in org.apache.tinkerpop.gremlin.server with parameters of type Settings Constructor Description Context(RequestMessage requestMessage, io.netty.channel.ChannelHandlerContext ctx, Settings settings, GraphManager graphManager, GremlinExecutor gremlinExecutor, ScheduledExecutorService scheduledExecutorService)
Context(RequestMessage requestMessage, io.netty.channel.ChannelHandlerContext ctx, Settings settings, GraphManager graphManager, GremlinExecutor gremlinExecutor, ScheduledExecutorService scheduledExecutorService, HttpGremlinEndpointHandler.RequestState requestState)
GremlinServer(Settings settings)
Construct a Gremlin Server instance fromSettings
.GremlinServer(Settings settings, ExecutorService gremlinExecutorService)
Construct a Gremlin Server instance fromSettings
andExecutorService
. -
Uses of Settings in org.apache.tinkerpop.gremlin.server.handler
Constructors in org.apache.tinkerpop.gremlin.server.handler with parameters of type Settings Constructor Description HttpBasicAuthenticationHandler(Authenticator authenticator, Authorizer authorizer, Settings settings)
HttpGremlinEndpointHandler(GremlinExecutor gremlinExecutor, GraphManager graphManager, Settings settings)
-
Uses of Settings in org.apache.tinkerpop.gremlin.server.util
Methods in org.apache.tinkerpop.gremlin.server.util that return Settings Modifier and Type Method Description Settings
ServerGremlinExecutor. getSettings()
Constructors in org.apache.tinkerpop.gremlin.server.util with parameters of type Settings Constructor Description CheckedGraphManager(Settings settings)
DefaultGraphManager(Settings settings)
Create a new instance using theSettings
from Gremlin Server.ServerGremlinExecutor(Settings settings, ExecutorService gremlinExecutorService, ScheduledExecutorService scheduledExecutorService)
Create a new object fromSettings
where thread pools are externally assigned.
-