| 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.epoll | Optimized transport for linux which uses EPOLL Edge-Triggered Mode
 for maximal performance. | 
| io.netty.channel.local | A virtual transport that enables the communication between the two
 parties in the same virtual machine. | 
| io.netty.channel.sctp | Abstract SCTP socket interfaces which extend the core channel API. | 
| 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 | Abstract TCP and UDP socket interfaces which extend the core channel API. | 
| 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 | UDT Transport. | 
| io.netty.channel.udt.nio | UDT Transport for NIO Channels. | 
| io.netty.channel.unix | Unix specific transport. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractServerChannelA skeletal server-side  Channelimplementation. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractEpollServerChannel | 
| class  | EpollServerDomainSocketChannel | 
| class  | EpollServerSocketChannelServerSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for
 maximal performance. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | LocalServerChannelA  ServerChannelfor the local transport which allows in VM communication. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | SctpServerChannelA SCTP/IP  ServerChannelwhich accepts incoming SCTP/IP associations. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | NioSctpServerChannelSctpServerChannelimplementation which use non-blocking mode to accept new
 connections and create theNioSctpChannelfor them. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | OioSctpServerChannelSctpServerChannelimplementation which use blocking mode to accept new
 connections and create theOioSctpChannelfor them. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | ServerSocketChannelA TCP/IP  ServerChannelwhich accepts incoming TCP/IP connections. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | NioServerSocketChannelA  ServerSocketChannelimplementation which uses
 NIO selector based implementation to accept new connections. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | OioServerSocketChannelServerSocketChannelwhich accepts new connections and create theOioSocketChannel's for them. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | UdtServerChannelUDT  ServerChannel. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | NioUdtAcceptorChannelCommon base for Netty Byte/Message UDT Stream/Datagram acceptors. | 
| class  | NioUdtByteAcceptorChannelByte Channel Acceptor for UDT Streams. | 
| class  | NioUdtMessageAcceptorChannelMessage Channel Acceptor for UDT Datagrams. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | ServerDomainSocketChannel | 
Copyright © 2008–2015 The Netty Project. All rights reserved.