| 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 |
Abstract TCP and UDP socket interfaces which extend the core channel API.
|
| 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 | Interface and Description |
|---|---|
interface |
Channel
A nexus to a network socket or a component which is capable of I/O
operations such as read, write, connect, and bind.
|
interface |
ChannelHandlerContext
Enables a
ChannelHandler to interact with its ChannelPipeline
and other handlers. |
interface |
ServerChannel
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractChannel
A skeletal
Channel implementation. |
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 | Interface and Description |
|---|---|
interface |
DatagramChannel
A UDP/IP
Channel which is created by DatagramChannelFactory. |
interface |
SctpChannel
A SCTP/IP
Channel |
interface |
SctpServerChannel
A SCTP/IP
ServerChannel which accepts incoming SCTP/IP connections. |
interface |
ServerSocketChannel
A TCP/IP
ServerChannel which accepts incoming TCP/IP connections. |
interface |
SocketChannel
A TCP/IP socket
Channel which was either accepted by
ServerSocketChannel or created by ClientSocketChannelFactory. |
| 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 |
NioSctpChannel |
class |
NioSctpServerChannel |
class |
NioServerSocketChannel |
class |
NioSocketChannel |
| Modifier and Type | Class and Description |
|---|---|
class |
OioDatagramChannel |
class |
OioSctpChannel |
class |
OioSctpServerChannel |
class |
OioServerSocketChannel |
class |
OioSocketChannel |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.