Uses of Interface
org.jboss.netty.channel.ChannelPipelineFactory
-
Packages that use ChannelPipelineFactory 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.socket.http An HTTP-based client-sideSocketChannel
and its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.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 -
-
Uses of ChannelPipelineFactory in org.jboss.netty.bootstrap
Methods in org.jboss.netty.bootstrap that return ChannelPipelineFactory Modifier and Type Method Description ChannelPipelineFactory
Bootstrap. getPipelineFactory()
Methods in org.jboss.netty.bootstrap with parameters of type ChannelPipelineFactory Modifier and Type Method Description void
Bootstrap. setPipelineFactory(ChannelPipelineFactory pipelineFactory)
-
Uses of ChannelPipelineFactory in org.jboss.netty.channel
Methods in org.jboss.netty.channel that return ChannelPipelineFactory Modifier and Type Method Description ChannelPipelineFactory
ChannelConfig. getPipelineFactory()
Returns theChannelPipelineFactory
which will be used when a child channel is created.ChannelPipelineFactory
DefaultChannelConfig. getPipelineFactory()
ChannelPipelineFactory
DefaultServerChannelConfig. getPipelineFactory()
static ChannelPipelineFactory
Channels. pipelineFactory(ChannelPipeline pipeline)
Creates a newChannelPipelineFactory
which creates a newChannelPipeline
which contains the same entries with the specifiedpipeline
.Methods in org.jboss.netty.channel with parameters of type ChannelPipelineFactory Modifier and Type Method Description void
ChannelConfig. setPipelineFactory(ChannelPipelineFactory pipelineFactory)
Sets theChannelPipelineFactory
which will be used when a child channel is created.void
DefaultChannelConfig. setPipelineFactory(ChannelPipelineFactory pipelineFactory)
void
DefaultServerChannelConfig. setPipelineFactory(ChannelPipelineFactory pipelineFactory)
-
Uses of ChannelPipelineFactory in org.jboss.netty.channel.socket.http
Methods in org.jboss.netty.channel.socket.http that return ChannelPipelineFactory Modifier and Type Method Description ChannelPipelineFactory
HttpTunnelingSocketChannelConfig. getPipelineFactory()
Methods in org.jboss.netty.channel.socket.http with parameters of type ChannelPipelineFactory Modifier and Type Method Description void
HttpTunnelingSocketChannelConfig. setPipelineFactory(ChannelPipelineFactory pipelineFactory)
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.factorial
Classes in org.jboss.netty.example.factorial that implement ChannelPipelineFactory Modifier and Type Class Description class
FactorialClientPipelineFactory
Creates a newly configuredChannelPipeline
for a client-side channel.class
FactorialServerPipelineFactory
Creates a newly configuredChannelPipeline
for a server-side channel. -
Uses of ChannelPipelineFactory in org.jboss.netty.example.http.file
Classes in org.jboss.netty.example.http.file that implement ChannelPipelineFactory Modifier and Type Class Description class
HttpStaticFileServerPipelineFactory
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.http.helloworld
Classes in org.jboss.netty.example.http.helloworld that implement ChannelPipelineFactory Modifier and Type Class Description class
HttpHelloWorldServerPipelineFactory
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.http.snoop
Classes in org.jboss.netty.example.http.snoop that implement ChannelPipelineFactory Modifier and Type Class Description class
HttpSnoopClientPipelineFactory
class
HttpSnoopServerPipelineFactory
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.http.upload
Classes in org.jboss.netty.example.http.upload that implement ChannelPipelineFactory Modifier and Type Class Description class
HttpUploadClientPipelineFactory
class
HttpUploadServerPipelineFactory
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.http.websocketx.autobahn
Classes in org.jboss.netty.example.http.websocketx.autobahn that implement ChannelPipelineFactory Modifier and Type Class Description class
AutobahnServerPipelineFactory
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.http.websocketx.server
Classes in org.jboss.netty.example.http.websocketx.server that implement ChannelPipelineFactory Modifier and Type Class Description class
WebSocketServerPipelineFactory
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.localtime
Classes in org.jboss.netty.example.localtime that implement ChannelPipelineFactory Modifier and Type Class Description class
LocalTimeClientPipelineFactory
class
LocalTimeServerPipelineFactory
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.proxy
Classes in org.jboss.netty.example.proxy that implement ChannelPipelineFactory Modifier and Type Class Description class
HexDumpProxyPipelineFactory
-
Uses of ChannelPipelineFactory in org.jboss.netty.example.securechat
Classes in org.jboss.netty.example.securechat that implement ChannelPipelineFactory Modifier and Type Class Description class
SecureChatClientPipelineFactory
Creates a newly configuredChannelPipeline
for a new channel.class
SecureChatServerPipelineFactory
Creates a newly configuredChannelPipeline
for a new channel. -
Uses of ChannelPipelineFactory in org.jboss.netty.example.telnet
Classes in org.jboss.netty.example.telnet that implement ChannelPipelineFactory Modifier and Type Class Description class
TelnetClientPipelineFactory
Creates a newly configuredChannelPipeline
for a new channel.class
TelnetServerPipelineFactory
Creates a newly configuredChannelPipeline
for a new channel.
-