| Package | Description |
|---|---|
| io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
| io.netty.channel.embedded |
A virtual
Channel that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context. |
| io.netty.channel.local |
A virtual transport that enables the communication between the two
parties in the same virtual machine.
|
| io.netty.channel.socket.aio |
NIO2-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
| io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
| io.netty.channel.socket.oio |
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractServerChannel
A skeletal server-side
Channel implementation. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEmbeddedChannel |
class |
EmbeddedByteChannel |
class |
EmbeddedMessageChannel |
| Modifier and Type | Class and Description |
|---|---|
class |
LocalChannel
A
Channel for the local transport. |
class |
LocalServerChannel
A
ServerChannel for the local transport. |
| Modifier and Type | Class and Description |
|---|---|
class |
AioServerSocketChannel |
class |
AioSocketChannel |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractNioChannel |
class |
NioDatagramChannel
Provides an NIO based
DatagramChannel. |
class |
NioServerSocketChannel |
class |
NioSocketChannel |
| Modifier and Type | Class and Description |
|---|---|
class |
OioDatagramChannel |
class |
OioServerSocketChannel |
class |
OioSocketChannel |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.