Class Channelizer.AbstractChannelizer
- java.lang.Object
- 
- io.netty.channel.ChannelHandlerAdapter
- 
- io.netty.channel.ChannelInboundHandlerAdapter
- 
- io.netty.channel.ChannelInitializer<io.netty.channel.socket.SocketChannel>
- 
- org.apache.tinkerpop.gremlin.driver.Channelizer.AbstractChannelizer
 
 
 
 
- 
- All Implemented Interfaces:
- io.netty.channel.ChannelHandler,- io.netty.channel.ChannelInboundHandler,- Channelizer
 - Direct Known Subclasses:
- Channelizer.WebSocketChannelizer
 - Enclosing interface:
- Channelizer
 
 public abstract static class Channelizer.AbstractChannelizer extends io.netty.channel.ChannelInitializer<io.netty.channel.socket.SocketChannel> implements Channelizer Base implementation of the client sideChannelizer.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface io.netty.channel.ChannelHandlerio.netty.channel.ChannelHandler.Sharable
 - 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.driver.ChannelizerChannelizer.AbstractChannelizer, Channelizer.WebSocketChannelizer
 
- 
 - 
Field SummaryFields Modifier and Type Field Description protected Clusterclusterprotected org.apache.tinkerpop.gremlin.driver.Connectionconnectionprotected static StringPIPELINE_GREMLIN_HANDLERprotected static StringPIPELINE_GREMLIN_SASL_HANDLERstatic StringPIPELINE_SSL_HANDLER
 - 
Constructor SummaryConstructors Constructor Description AbstractChannelizer()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidclose(io.netty.channel.Channel channel)Called onConnection.closeAsync()to perform anChannelizerspecific functions.abstract voidconfigure(io.netty.channel.ChannelPipeline pipeline)voidfinalize(io.netty.channel.ChannelPipeline pipeline)voidinit(org.apache.tinkerpop.gremlin.driver.Connection connection)Initializes theChannelizer.protected voidinitChannel(io.netty.channel.socket.SocketChannel socketChannel)booleansupportsSsl()- 
Methods inherited from class io.netty.channel.ChannelInitializerchannelRegistered, exceptionCaught, handlerAdded, handlerRemoved
 - 
Methods inherited from class io.netty.channel.ChannelInboundHandlerAdapterchannelActive, channelInactive, channelRead, channelReadComplete, channelUnregistered, channelWritabilityChanged, userEventTriggered
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.driver.Channelizerconnected
 
- 
 
- 
- 
- 
Field Detail- 
connectionprotected org.apache.tinkerpop.gremlin.driver.Connection connection 
 - 
clusterprotected Cluster cluster 
 - 
PIPELINE_GREMLIN_SASL_HANDLERprotected static final String PIPELINE_GREMLIN_SASL_HANDLER - See Also:
- Constant Field Values
 
 - 
PIPELINE_GREMLIN_HANDLERprotected static final String PIPELINE_GREMLIN_HANDLER - See Also:
- Constant Field Values
 
 - 
PIPELINE_SSL_HANDLERpublic static final String PIPELINE_SSL_HANDLER - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
supportsSslpublic boolean supportsSsl() 
 - 
configurepublic abstract void configure(io.netty.channel.ChannelPipeline pipeline) 
 - 
finalizepublic void finalize(io.netty.channel.ChannelPipeline pipeline) 
 - 
closepublic void close(io.netty.channel.Channel channel) Description copied from interface:ChannelizerCalled onConnection.closeAsync()to perform anChannelizerspecific functions. Note that theConnectionalready callsChannel.close()so there is no need to call that method here. An implementation will typically use this method to send aChannelizerspecific message to the server to notify of shutdown coming from the client side (e.g. a "close" websocket frame).- Specified by:
- closein interface- Channelizer
 
 - 
initpublic void init(org.apache.tinkerpop.gremlin.driver.Connection connection) Description copied from interface:ChannelizerInitializes theChannelizer. Called just after construction.- Specified by:
- initin interface- Channelizer
 
 
- 
 
-