| 程序包 | 说明 | 
|---|---|
| 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  Channelthat helps wrapping a series of handlers to
 unit test the handlers or use them in non-I/O context. | 
| io.netty.channel.epoll | Optimized transport for linux which uses EPOLL Edge-Triggered Mode
 for maximal performance. | 
| io.netty.channel.kqueue | BSD specific transport. | 
| io.netty.channel.local | A virtual transport that enables the communication between the two
 parties in the same virtual machine. | 
| io.netty.channel.nio | NIO-based channel
 API implementation - recommended for a large number of connections (>= 1000). | 
| io.netty.channel.oio | Old blocking I/O based channel API implementation - recommended for
 a small number of connections (< 1000). | 
| io.netty.channel.rxtx | A serial and parallel port communication transport based on RXTX. | 
| io.netty.channel.sctp.nio | NIO-based SCTP Channel
 API implementation - recommended for a large number of connections (>= 1000). | 
| io.netty.channel.sctp.oio | Old blocking I/O based SCTP channel API implementation - recommended for
 a small 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). | 
| io.netty.channel.udt.nio | UDT Transport for NIO Channels. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | AbstractChannelA skeletal  Channelimplementation. | 
| class  | AbstractServerChannelA skeletal server-side  Channelimplementation. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | EmbeddedChannelBase class for  Channelimplementations that are used in an embedded fashion. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | AbstractEpollServerChannel | 
| class  | AbstractEpollStreamChannel | 
| class  | EpollDatagramChannelDatagramChannelimplementation that uses linux EPOLL Edge-Triggered Mode for
 maximal performance. | 
| class  | EpollDomainDatagramChannel | 
| class  | EpollDomainSocketChannel | 
| class  | EpollServerDomainSocketChannel | 
| class  | EpollServerSocketChannelServerSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for
 maximal performance. | 
| class  | EpollSocketChannelSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for
 maximal performance. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | AbstractKQueueServerChannel | 
| class  | AbstractKQueueStreamChannel | 
| class  | KQueueDatagramChannel | 
| class  | KQueueDomainDatagramChannel | 
| class  | KQueueDomainSocketChannel | 
| class  | KQueueServerDomainSocketChannel | 
| class  | KQueueServerSocketChannel | 
| class  | KQueueSocketChannel | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | LocalChannelA  Channelfor the local transport. | 
| class  | LocalServerChannelA  ServerChannelfor the local transport which allows in VM communication. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | AbstractNioByteChannelAbstractNioChannelbase class forChannels that operate on bytes. | 
| class  | AbstractNioChannelAbstract base class for  Channelimplementations which use a Selector based approach. | 
| class  | AbstractNioMessageChannelAbstractNioChannelbase class forChannels that operate on messages. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | AbstractOioByteChannel已过时。 
 use NIO / EPOLL / KQUEUE transport. | 
| class  | AbstractOioChannel已过时。 
 use NIO / EPOLL / KQUEUE transport. | 
| class  | AbstractOioMessageChannel已过时。 
 use NIO / EPOLL / KQUEUE transport. | 
| class  | OioByteStreamChannel已过时。 
 use NIO / EPOLL / KQUEUE transport. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | RxtxChannel已过时。 
 this transport will be removed in the next major version. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | NioSctpChannelSctpChannelimplementation which use non-blocking mode and allows to read /
 writeSctpMessages to the underlyingSctpChannel. | 
| class  | NioSctpServerChannelSctpServerChannelimplementation which use non-blocking mode to accept new
 connections and create theNioSctpChannelfor them. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | OioSctpChannel已过时。 
 use  NioSctpChannel. | 
| class  | OioSctpServerChannel已过时。 
 use  NioSctpServerChannel. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | NioDatagramChannelAn NIO datagram  Channelthat sends and receives anAddressedEnvelope. | 
| class  | NioServerSocketChannelA  ServerSocketChannelimplementation which uses
 NIO selector based implementation to accept new connections. | 
| class  | NioSocketChannelSocketChannelwhich uses NIO selector based implementation. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | OioDatagramChannel已过时。 
 use NIO / EPOLL / KQUEUE transport. | 
| class  | OioServerSocketChannel已过时。 
 use NIO / EPOLL / KQUEUE transport. | 
| class  | OioSocketChannel已过时。 
 use NIO / EPOLL / KQUEUE transport. | 
| 限定符和类型 | 类和说明 | 
|---|---|
| class  | NioUdtAcceptorChannel已过时。 
 The UDT transport is no longer maintained and will be removed. | 
| class  | NioUdtByteAcceptorChannel已过时。 
 The UDT transport is no longer maintained and will be removed. | 
| class  | NioUdtByteConnectorChannel已过时。 
 The UDT transport is no longer maintained and will be removed. | 
| class  | NioUdtByteRendezvousChannel已过时。 
 The UDT transport is no longer maintained and will be removed. | 
| class  | NioUdtMessageAcceptorChannel已过时。 
 The UDT transport is no longer maintained and will be removed. | 
| class  | NioUdtMessageConnectorChannel已过时。 
 The UDT transport is no longer maintained and will be removed. | 
| class  | NioUdtMessageRendezvousChannel已过时。 
 The UDT transport is no longer maintained and will be removed. |