Uses of Interface
org.jboss.netty.channel.ChannelPipelineFactory

Packages that use ChannelPipelineFactory
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-side SocketChannel 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.snoop   
org.jboss.netty.example.http.websocket   
org.jboss.netty.example.local   
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
 ChannelPipelineFactory Bootstrap.getPipelineFactory()
          Returns the ChannelPipelineFactory which creates a new ChannelPipeline for each new Channel.
 

Methods in org.jboss.netty.bootstrap with parameters of type ChannelPipelineFactory
 void Bootstrap.setPipelineFactory(ChannelPipelineFactory pipelineFactory)
          Sets the ChannelPipelineFactory which creates a new ChannelPipeline for each new Channel.
 

Uses of ChannelPipelineFactory in org.jboss.netty.channel
 

Methods in org.jboss.netty.channel that return ChannelPipelineFactory
 ChannelPipelineFactory ChannelConfig.getPipelineFactory()
          Returns the ChannelPipelineFactory which will be used when a child channel is created.
 ChannelPipelineFactory DefaultServerChannelConfig.getPipelineFactory()
           
 ChannelPipelineFactory DefaultChannelConfig.getPipelineFactory()
           
static ChannelPipelineFactory Channels.pipelineFactory(ChannelPipeline pipeline)
          Creates a new ChannelPipelineFactory which creates a new ChannelPipeline which contains the same entries with the specified pipeline.
 

Methods in org.jboss.netty.channel with parameters of type ChannelPipelineFactory
 void ChannelConfig.setPipelineFactory(ChannelPipelineFactory pipelineFactory)
          Sets the ChannelPipelineFactory which will be used when a child channel is created.
 void DefaultServerChannelConfig.setPipelineFactory(ChannelPipelineFactory pipelineFactory)
           
 void DefaultChannelConfig.setPipelineFactory(ChannelPipelineFactory pipelineFactory)
           
 

Uses of ChannelPipelineFactory in org.jboss.netty.channel.socket.http
 

Methods in org.jboss.netty.channel.socket.http that return ChannelPipelineFactory
 ChannelPipelineFactory HttpTunnelingSocketChannelConfig.getPipelineFactory()
           
 

Methods in org.jboss.netty.channel.socket.http with parameters of type ChannelPipelineFactory
 void HttpTunnelingSocketChannelConfig.setPipelineFactory(ChannelPipelineFactory pipelineFactory)
           
 

Uses of ChannelPipelineFactory in org.jboss.netty.example.factorial
 

Classes in org.jboss.netty.example.factorial that implement ChannelPipelineFactory
 class FactorialClientPipelineFactory
          Creates a newly configured ChannelPipeline for a client-side channel.
 class FactorialServerPipelineFactory
          Creates a newly configured ChannelPipeline 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
 class HttpStaticFileServerPipelineFactory
           
 

Uses of ChannelPipelineFactory in org.jboss.netty.example.http.snoop
 

Classes in org.jboss.netty.example.http.snoop that implement ChannelPipelineFactory
 class HttpClientPipelineFactory
           
 class HttpServerPipelineFactory
           
 

Uses of ChannelPipelineFactory in org.jboss.netty.example.http.websocket
 

Classes in org.jboss.netty.example.http.websocket that implement ChannelPipelineFactory
 class WebSocketServerPipelineFactory
           
 

Uses of ChannelPipelineFactory in org.jboss.netty.example.local
 

Classes in org.jboss.netty.example.local that implement ChannelPipelineFactory
 class LocalServerPipelineFactory
           
 

Uses of ChannelPipelineFactory in org.jboss.netty.example.localtime
 

Classes in org.jboss.netty.example.localtime that implement ChannelPipelineFactory
 class LocalTimeClientPipelineFactory
           
 class LocalTimeServerPipelineFactory
           
 

Uses of ChannelPipelineFactory in org.jboss.netty.example.proxy
 

Classes in org.jboss.netty.example.proxy that implement ChannelPipelineFactory
 class HexDumpProxyPipelineFactory
           
 

Uses of ChannelPipelineFactory in org.jboss.netty.example.securechat
 

Classes in org.jboss.netty.example.securechat that implement ChannelPipelineFactory
 class SecureChatClientPipelineFactory
          Creates a newly configured ChannelPipeline for a new channel.
 class SecureChatServerPipelineFactory
          Creates a newly configured ChannelPipeline for a new channel.
 

Uses of ChannelPipelineFactory in org.jboss.netty.example.telnet
 

Classes in org.jboss.netty.example.telnet that implement ChannelPipelineFactory
 class TelnetClientPipelineFactory
          Creates a newly configured ChannelPipeline for a new channel.
 class TelnetServerPipelineFactory
          Creates a newly configured ChannelPipeline for a new channel.
 



Copyright © 2008-2011 JBoss, a division of Red Hat, Inc.. All Rights Reserved.