| Package | Description |
|---|---|
| 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.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.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.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.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractServerChannel
A skeletal server-side
Channel implementation. |
| Modifier and Type | Field and Description |
|---|---|
private static java.util.concurrent.atomic.AtomicIntegerFieldUpdater<AbstractChannel> |
AbstractChannel.UNWRITABLE_UPDATER |
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
DefaultLocalChannel |
(package private) class |
DefaultLocalServerChannel |
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
HttpTunnelingClientSocketChannel |
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
AbstractNioChannel<C extends java.nio.channels.SelectableChannel & java.nio.channels.WritableByteChannel> |
(package private) class |
NioAcceptedSocketChannel |
(package private) class |
NioClientSocketChannel |
class |
NioDatagramChannel
Provides an NIO based
DatagramChannel. |
(package private) class |
NioServerSocketChannel |
class |
NioSocketChannel |
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
AbstractOioChannel |
(package private) class |
OioAcceptedSocketChannel |
(package private) class |
OioClientSocketChannel |
(package private) class |
OioDatagramChannel |
(package private) class |
OioServerSocketChannel |
(package private) class |
OioSocketChannel |
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
EmbeddedChannel
TODO Make EmbeddedChannel implement ChannelConfig and ChannelSink to reduce overhead.
|