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. 
 

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 DefaultChannelConfig.getPipelineFactory()
           
 ChannelPipelineFactory DefaultServerChannelConfig.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 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
 ChannelPipelineFactory HttpTunnelingSocketChannelConfig.getPipelineFactory()
           
 

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



Copyright © 2008-2011. All Rights Reserved.