Uses of Class
org.apache.tinkerpop.gremlin.server.Settings
-
-
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)
default void
OpProcessor. init(Settings settings)
Initialize theOpProcessor
with settings from the server.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)
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
Fields in org.apache.tinkerpop.gremlin.server.handler declared as Settings Modifier and Type Field Description protected Settings
SaslAuthenticationHandler. settings
protected Settings
UnifiedHandler. settings
-
Uses of Settings in org.apache.tinkerpop.gremlin.server.op
Methods in org.apache.tinkerpop.gremlin.server.op with parameters of type Settings Modifier and Type Method Description protected Map<String,Object>
AbstractOpProcessor. generateResultMetaData(io.netty.channel.ChannelHandlerContext ctx, RequestMessage msg, ResponseStatusCode code, Iterator itty, Settings settings)
Generates response result meta-data to put on aResponseMessage
.protected Map<String,Object>
AbstractOpProcessor. generateStatusAttributes(io.netty.channel.ChannelHandlerContext ctx, RequestMessage msg, ResponseStatusCode code, Iterator itty, Settings settings)
Generates response status meta-data to put on aResponseMessage
.static void
OpLoader. init(Settings settings)
Initialize theOpLoader
with server settings. -
Uses of Settings in org.apache.tinkerpop.gremlin.server.op.session
Methods in org.apache.tinkerpop.gremlin.server.op.session with parameters of type Settings Modifier and Type Method Description void
SessionOpProcessor. init(Settings settings)
-
Uses of Settings in org.apache.tinkerpop.gremlin.server.op.standard
Methods in org.apache.tinkerpop.gremlin.server.op.standard with parameters of type Settings Modifier and Type Method Description void
StandardOpProcessor. init(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.
-