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-side
SocketChannel
and its corresponding server-side Servlet implementation that make your
existing server application work in a firewalled network. |
Modifier and Type | Method and Description |
---|---|
ChannelPipelineFactory |
Bootstrap.getPipelineFactory()
|
Modifier and Type | Method and Description |
---|---|
void |
Bootstrap.setPipelineFactory(ChannelPipelineFactory pipelineFactory)
|
Modifier and Type | Method and Description |
---|---|
ChannelPipelineFactory |
DefaultServerChannelConfig.getPipelineFactory() |
ChannelPipelineFactory |
DefaultChannelConfig.getPipelineFactory() |
ChannelPipelineFactory |
ChannelConfig.getPipelineFactory()
Returns the
ChannelPipelineFactory which will be used when
a child channel is created. |
static ChannelPipelineFactory |
Channels.pipelineFactory(ChannelPipeline pipeline)
Creates a new
ChannelPipelineFactory which creates a new
ChannelPipeline which contains the same entries with the
specified pipeline . |
Modifier and Type | Method and Description |
---|---|
void |
DefaultServerChannelConfig.setPipelineFactory(ChannelPipelineFactory pipelineFactory) |
void |
DefaultChannelConfig.setPipelineFactory(ChannelPipelineFactory pipelineFactory) |
void |
ChannelConfig.setPipelineFactory(ChannelPipelineFactory pipelineFactory)
Sets the
ChannelPipelineFactory which will be used when
a child channel is created. |
Modifier and Type | Method and Description |
---|---|
ChannelPipelineFactory |
HttpTunnelingSocketChannelConfig.getPipelineFactory() |
Modifier and Type | Method and Description |
---|---|
void |
HttpTunnelingSocketChannelConfig.setPipelineFactory(ChannelPipelineFactory pipelineFactory) |
Copyright © 2008-2014 The Netty Project. All Rights Reserved.