Uses of Interface
org.jboss.netty.channel.ChannelPipeline
-
Packages that use ChannelPipeline Package Description org.jboss.netty.bootstrap IoC/DI friendly helper classes which enable an easy implementation of typical client side and server side channel initialization.org.jboss.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.org.jboss.netty.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.org.jboss.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.org.jboss.netty.channel.socket.http An HTTP-based client-sideSocketChanneland its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).org.jboss.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).org.jboss.netty.example.factorial org.jboss.netty.example.http.file org.jboss.netty.example.http.helloworld org.jboss.netty.example.http.snoop org.jboss.netty.example.http.upload org.jboss.netty.example.http.websocketx.autobahn This package is intended for use with testing against the Python AutoBahn test suite.org.jboss.netty.example.http.websocketx.server This package contains an example web socket web server.org.jboss.netty.example.localtime org.jboss.netty.example.proxy org.jboss.netty.example.securechat org.jboss.netty.example.telnet org.jboss.netty.handler.codec.embedder A helper that wraps an encoder or a decoder so that they can be used without doing actual I/O in unit tests or higher level codecs.org.jboss.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames. -
-
Uses of ChannelPipeline in org.jboss.netty.bootstrap
Fields in org.jboss.netty.bootstrap declared as ChannelPipeline Modifier and Type Field Description private ChannelPipelineBootstrap. pipelineMethods in org.jboss.netty.bootstrap that return ChannelPipeline Modifier and Type Method Description ChannelPipelineBootstrap. getPipeline()Returns the defaultChannelPipelinewhich is cloned when a newChannelis created.Methods in org.jboss.netty.bootstrap with parameters of type ChannelPipeline Modifier and Type Method Description voidBootstrap. setPipeline(ChannelPipeline pipeline)Sets the defaultChannelPipelinewhich is cloned when a newChannelis created. -
Uses of ChannelPipeline in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ChannelPipeline Modifier and Type Class Description classDefaultChannelPipelineThe defaultChannelPipelineimplementation.Fields in org.jboss.netty.channel declared as ChannelPipeline Modifier and Type Field Description private ChannelPipelineAbstractChannel. pipelineMethods in org.jboss.netty.channel that return ChannelPipeline Modifier and Type Method Description ChannelPipelineAbstractChannel. getPipeline()ChannelPipelineChannel. getPipeline()Returns theChannelPipelinewhich handlesChannelEvents associated with this channel.ChannelPipelineChannelHandlerContext. getPipeline()Returns theChannelPipelinethat theChannelHandlerbelongs to.ChannelPipelineChannelPipelineFactory. getPipeline()Returns a newly createdChannelPipeline.ChannelPipelineDefaultChannelPipeline.DefaultChannelHandlerContext. getPipeline()static ChannelPipelineChannels. pipeline()Creates a newChannelPipeline.static ChannelPipelineChannels. pipeline(ChannelHandler... handlers)Creates a newChannelPipelinewhich contains the specifiedChannelHandlers.static ChannelPipelineChannels. pipeline(ChannelPipeline pipeline)Creates a newChannelPipelinewhich contains the same entries with the specifiedpipeline.Methods in org.jboss.netty.channel with parameters of type ChannelPipeline Modifier and Type Method Description voidChannelSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)Invoked byChannelPipelinewhen a downstreamChannelEventhas reached its terminal (the head of the pipeline).voidDefaultChannelPipeline.DiscardingChannelSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)voidAbstractChannelSink. exceptionCaught(ChannelPipeline pipeline, ChannelEvent event, ChannelPipelineException cause)Sends anExceptionEventupstream with the specifiedcause.voidChannelSink. exceptionCaught(ChannelPipeline pipeline, ChannelEvent e, ChannelPipelineException cause)Invoked byChannelPipelinewhen an exception was raised while one of itsChannelHandlers process aChannelEvent.voidDefaultChannelPipeline.DiscardingChannelSink. exceptionCaught(ChannelPipeline pipeline, ChannelEvent e, ChannelPipelineException cause)ChannelFutureAbstractChannelSink. execute(ChannelPipeline pipeline, java.lang.Runnable task)This implementation just directly callRunnable.run().ChannelFutureChannelSink. execute(ChannelPipeline pipeline, java.lang.Runnable task)Execute the givenRunnablelater in the io-thread.ChannelFutureDefaultChannelPipeline.DiscardingChannelSink. execute(ChannelPipeline pipeline, java.lang.Runnable task)ChannelChannelFactory. newChannel(ChannelPipeline pipeline)ServerChannelServerChannelFactory. newChannel(ChannelPipeline pipeline)static ChannelPipelineChannels. pipeline(ChannelPipeline pipeline)Creates a newChannelPipelinewhich contains the same entries with the specifiedpipeline.static ChannelPipelineFactoryChannels. pipelineFactory(ChannelPipeline pipeline)Creates a newChannelPipelineFactorywhich creates a newChannelPipelinewhich contains the same entries with the specifiedpipeline.Constructors in org.jboss.netty.channel with parameters of type ChannelPipeline Constructor Description AbstractChannel(java.lang.Integer id, Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)(Internal use only) Creates a new temporary instance with the specified ID.AbstractChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)Creates a new instance.AbstractServerChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)Creates a new instance. -
Uses of ChannelPipeline in org.jboss.netty.channel.local
Methods in org.jboss.netty.channel.local with parameters of type ChannelPipeline Modifier and Type Method Description voidLocalClientChannelSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)voidLocalServerChannelSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)LocalChannelDefaultLocalClientChannelFactory. newChannel(ChannelPipeline pipeline)LocalServerChannelDefaultLocalServerChannelFactory. newChannel(ChannelPipeline pipeline)LocalChannelLocalClientChannelFactory. newChannel(ChannelPipeline pipeline)LocalServerChannelLocalServerChannelFactory. newChannel(ChannelPipeline pipeline)Constructors in org.jboss.netty.channel.local with parameters of type ChannelPipeline Constructor Description DefaultLocalChannel(LocalServerChannel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, DefaultLocalChannel pairedChannel)DefaultLocalServerChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink) -
Uses of ChannelPipeline in org.jboss.netty.channel.socket
Methods in org.jboss.netty.channel.socket with parameters of type ChannelPipeline Modifier and Type Method Description SocketChannelClientSocketChannelFactory. newChannel(ChannelPipeline pipeline)DatagramChannelDatagramChannelFactory. newChannel(ChannelPipeline pipeline)ServerSocketChannelServerSocketChannelFactory. newChannel(ChannelPipeline pipeline) -
Uses of ChannelPipeline in org.jboss.netty.channel.socket.http
Methods in org.jboss.netty.channel.socket.http with parameters of type ChannelPipeline Modifier and Type Method Description voidHttpTunnelingClientSocketPipelineSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)SocketChannelHttpTunnelingClientSocketChannelFactory. newChannel(ChannelPipeline pipeline)Constructors in org.jboss.netty.channel.socket.http with parameters of type ChannelPipeline Constructor Description HttpTunnelingClientSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, ClientSocketChannelFactory clientSocketChannelFactory) -
Uses of ChannelPipeline in org.jboss.netty.channel.socket.nio
Methods in org.jboss.netty.channel.socket.nio with parameters of type ChannelPipeline Modifier and Type Method Description voidNioClientSocketPipelineSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)voidNioDatagramPipelineSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)Handle downstream event.voidNioServerSocketPipelineSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)ChannelFutureAbstractNioChannelSink. execute(ChannelPipeline pipeline, java.lang.Runnable task)SocketChannelNioClientSocketChannelFactory. newChannel(ChannelPipeline pipeline)DatagramChannelNioDatagramChannelFactory. newChannel(ChannelPipeline pipeline)ServerSocketChannelNioServerSocketChannelFactory. newChannel(ChannelPipeline pipeline) -
Uses of ChannelPipeline in org.jboss.netty.channel.socket.oio
Methods in org.jboss.netty.channel.socket.oio with parameters of type ChannelPipeline Modifier and Type Method Description voidOioClientSocketPipelineSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)voidOioDatagramPipelineSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)voidOioServerSocketPipelineSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)ChannelFutureAbstractOioChannelSink. execute(ChannelPipeline pipeline, java.lang.Runnable task)SocketChannelOioClientSocketChannelFactory. newChannel(ChannelPipeline pipeline)DatagramChannelOioDatagramChannelFactory. newChannel(ChannelPipeline pipeline)ServerSocketChannelOioServerSocketChannelFactory. newChannel(ChannelPipeline pipeline)Constructors in org.jboss.netty.channel.socket.oio with parameters of type ChannelPipeline Constructor Description AbstractOioChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)OioAcceptedSocketChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, java.net.Socket socket)OioClientSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)OioDatagramChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)OioServerSocketChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)OioSocketChannel(Channel parent, ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, java.net.Socket socket) -
Uses of ChannelPipeline in org.jboss.netty.example.factorial
Methods in org.jboss.netty.example.factorial that return ChannelPipeline Modifier and Type Method Description ChannelPipelineFactorialClientPipelineFactory. getPipeline()ChannelPipelineFactorialServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.http.file
Methods in org.jboss.netty.example.http.file that return ChannelPipeline Modifier and Type Method Description ChannelPipelineHttpStaticFileServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.http.helloworld
Methods in org.jboss.netty.example.http.helloworld that return ChannelPipeline Modifier and Type Method Description ChannelPipelineHttpHelloWorldServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.http.snoop
Methods in org.jboss.netty.example.http.snoop that return ChannelPipeline Modifier and Type Method Description ChannelPipelineHttpSnoopClientPipelineFactory. getPipeline()ChannelPipelineHttpSnoopServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.http.upload
Methods in org.jboss.netty.example.http.upload that return ChannelPipeline Modifier and Type Method Description ChannelPipelineHttpUploadClientPipelineFactory. getPipeline()ChannelPipelineHttpUploadServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.http.websocketx.autobahn
Methods in org.jboss.netty.example.http.websocketx.autobahn that return ChannelPipeline Modifier and Type Method Description ChannelPipelineAutobahnServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.http.websocketx.server
Methods in org.jboss.netty.example.http.websocketx.server that return ChannelPipeline Modifier and Type Method Description ChannelPipelineWebSocketServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.localtime
Methods in org.jboss.netty.example.localtime that return ChannelPipeline Modifier and Type Method Description ChannelPipelineLocalTimeClientPipelineFactory. getPipeline()ChannelPipelineLocalTimeServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.proxy
Methods in org.jboss.netty.example.proxy that return ChannelPipeline Modifier and Type Method Description ChannelPipelineHexDumpProxyPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.securechat
Methods in org.jboss.netty.example.securechat that return ChannelPipeline Modifier and Type Method Description ChannelPipelineSecureChatClientPipelineFactory. getPipeline()ChannelPipelineSecureChatServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.example.telnet
Methods in org.jboss.netty.example.telnet that return ChannelPipeline Modifier and Type Method Description ChannelPipelineTelnetClientPipelineFactory. getPipeline()ChannelPipelineTelnetServerPipelineFactory. getPipeline() -
Uses of ChannelPipeline in org.jboss.netty.handler.codec.embedder
Classes in org.jboss.netty.handler.codec.embedder that implement ChannelPipeline Modifier and Type Class Description private static classAbstractCodecEmbedder.EmbeddedChannelPipelineFields in org.jboss.netty.handler.codec.embedder declared as ChannelPipeline Modifier and Type Field Description private ChannelPipelineAbstractCodecEmbedder. pipelineMethods in org.jboss.netty.handler.codec.embedder that return ChannelPipeline Modifier and Type Method Description ChannelPipelineAbstractCodecEmbedder. getPipeline()ChannelPipelineCodecEmbedder. getPipeline()Returns theChannelPipelinethat handles the input.Methods in org.jboss.netty.handler.codec.embedder with parameters of type ChannelPipeline Modifier and Type Method Description voidAbstractCodecEmbedder.EmbeddedChannelSink. eventSunk(ChannelPipeline pipeline, ChannelEvent e)voidAbstractCodecEmbedder.EmbeddedChannelSink. exceptionCaught(ChannelPipeline pipeline, ChannelEvent e, ChannelPipelineException cause)ChannelFutureAbstractCodecEmbedder.EmbeddedChannelSink. execute(ChannelPipeline pipeline, java.lang.Runnable task)ChannelEmbeddedChannelFactory. newChannel(ChannelPipeline pipeline)Constructors in org.jboss.netty.handler.codec.embedder with parameters of type ChannelPipeline Constructor Description EmbeddedChannel(ChannelPipeline pipeline, ChannelSink sink) -
Uses of ChannelPipeline in org.jboss.netty.handler.codec.http.websocketx
Methods in org.jboss.netty.handler.codec.http.websocketx with parameters of type ChannelPipeline Modifier and Type Method Description private static java.lang.StringWebSocketServerProtocolHandshakeHandler. getWebSocketLocation(ChannelPipeline cp, HttpRequest req, java.lang.String path)
-