Uses of Interface
org.apache.tinkerpop.gremlin.server.Channelizer
-
Packages that use Channelizer Package Description org.apache.tinkerpop.gremlin.server org.apache.tinkerpop.gremlin.server.channel org.apache.tinkerpop.gremlin.server.handler -
-
Uses of Channelizer in org.apache.tinkerpop.gremlin.server
Classes in org.apache.tinkerpop.gremlin.server that implement Channelizer Modifier and Type Class Description class
AbstractChannelizer
A base implementation for theChannelizer
which does a basic configuration of the pipeline, one that is generally common to virtually any Gremlin Server operation (i.e.Methods in org.apache.tinkerpop.gremlin.server that return Channelizer Modifier and Type Method Description Channelizer
GremlinServer. getChannelizer()
-
Uses of Channelizer in org.apache.tinkerpop.gremlin.server.channel
Classes in org.apache.tinkerpop.gremlin.server.channel that implement Channelizer Modifier and Type Class Description class
HttpChannelizer
Constructs aChannelizer
that exposes an HTTP endpoint in Gremlin Server.class
UnifiedChannelizer
AChannelizer
that supports websocket and HTTP requests and does so with the most streamlined processing model for Gremlin Server introduced with 3.5.0.class
WebSocketChannelizer
AChannelizer
that exposes a WebSocket-based Gremlin endpoint with a custom sub-protocol.class
WsAndHttpChannelizer
A channelizer for port unification with websockets and http -
Uses of Channelizer in org.apache.tinkerpop.gremlin.server.handler
Fields in org.apache.tinkerpop.gremlin.server.handler declared as Channelizer Modifier and Type Field Description protected Channelizer
UnifiedHandler. channelizer
Methods in org.apache.tinkerpop.gremlin.server.handler that return Channelizer Modifier and Type Method Description Channelizer
WsAndHttpChannelizerHandler. getWsChannelizer()
Constructors in org.apache.tinkerpop.gremlin.server.handler with parameters of type Channelizer Constructor Description OpSelectorHandler(Settings settings, GraphManager graphManager, GremlinExecutor gremlinExecutor, ScheduledExecutorService scheduledExecutorService, Channelizer channelizer)
UnifiedHandler(Settings settings, GraphManager graphManager, GremlinExecutor gremlinExecutor, ScheduledExecutorService scheduledExecutorService, Channelizer channelizer)
-