| Package | Description | 
|---|---|
| io.netty.channel.epoll | Optimized transport for linux which uses EPOLL Edge-Triggered Mode
 for maximal performance. | 
| 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). | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | EpollServerSocketChannelServerSocketChannelimplementation that uses linux EPOLL Edge-Triggered Mode for
 maximal performance. | 
| Modifier and Type | Method and Description | 
|---|---|
| ServerSocketChannel | EpollSocketChannel. parent() | 
| Modifier and Type | Method and Description | 
|---|---|
| ServerSocketChannel | SocketChannel. parent() | 
| Constructor and Description | 
|---|
| DefaultServerSocketChannelConfig(ServerSocketChannel channel,
                                ServerSocket javaSocket)Creates a new instance. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | NioServerSocketChannelA  ServerSocketChannelimplementation which uses
 NIO selector based implementation to accept new connections. | 
| Modifier and Type | Method and Description | 
|---|---|
| ServerSocketChannel | NioSocketChannel. parent() | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | OioServerSocketChannelServerSocketChannelwhich accepts new connections and create theOioSocketChannel's for them. | 
| Modifier and Type | Method and Description | 
|---|---|
| ServerSocketChannel | OioSocketChannel. parent() | 
| Constructor and Description | 
|---|
| DefaultOioServerSocketChannelConfig(ServerSocketChannel channel,
                                   ServerSocket javaSocket)Deprecated.  | 
Copyright © 2008–2015 The Netty Project. All rights reserved.