程序包 | 说明 |
---|---|
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.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.unix |
Unix specific transport.
|
限定符和类型 | 类和说明 |
---|---|
class |
AbstractEpollStreamChannel |
class |
EpollDomainSocketChannel |
class |
EpollSocketChannel
SocketChannel implementation that uses linux EPOLL Edge-Triggered Mode for
maximal performance. |
限定符和类型 | 类和说明 |
---|---|
class |
AbstractKQueueStreamChannel |
class |
KQueueDomainSocketChannel |
class |
KQueueSocketChannel |
限定符和类型 | 接口和说明 |
---|---|
interface |
SocketChannel
A TCP/IP socket
Channel . |
限定符和类型 | 类和说明 |
---|---|
class |
NioSocketChannel
SocketChannel which uses NIO selector based implementation. |
限定符和类型 | 类和说明 |
---|---|
class |
OioSocketChannel
已过时。
use NIO / EPOLL / KQUEUE transport.
|
限定符和类型 | 接口和说明 |
---|---|
interface |
DomainSocketChannel
A
UnixChannel that supports communication via
Unix Domain Socket. |