软件包 | 描述 |
---|---|
io.netty.channel |
核心频道API是异步和事件驱动的各种传输(如
NIO Channel)的抽象 。
|
io.netty.channel.epoll |
针对Linux的优化传输,使用
EPOLL Edge-Triggered Mode获得最高性能。
|
io.netty.channel.kqueue |
BSD专用运输。
|
io.netty.channel.local |
一种虚拟传输,可在同一虚拟机中实现双方之间的通信。
|
io.netty.channel.sctp |
抽象扩展核心通道API的SCTP套接字接口。
|
io.netty.channel.sctp.nio |
基于
NIO的SCTP通道API实现 - 推荐用于大量连接(> = 1000)。
|
io.netty.channel.sctp.oio |
旧的阻止基于I / O的SCTP通道API实现 - 建议用于少量连接(<1000)。
|
io.netty.channel.socket |
抽象扩展核心通道API的TCP和UDP套接字接口。
|
io.netty.channel.socket.nio |
基于
NIO的套接字通道API实现 - 推荐用于大量连接(> = 1000)。
|
io.netty.channel.socket.oio |
旧阻塞基于I / O的套接字通道API实现 - 建议少量连接(<1000)。
|
io.netty.channel.udt |
UDT运输。
|
io.netty.channel.udt.nio |
用于NIO通道的UDT传输。
|
io.netty.channel.unix |
Unix专用传输。
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractServerChannel
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractEpollServerChannel |
class |
EpollServerDomainSocketChannel |
class |
EpollServerSocketChannel
ServerSocketChannel 使用linux EPOLL边缘触发模式实现最高性能。
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractKQueueServerChannel |
class |
KQueueServerDomainSocketChannel |
class |
KQueueServerSocketChannel |
Modifier and Type | Class and Description |
---|---|
class |
LocalServerChannel
ServerChannel 用于允许VM通信的本地传输。
|
Modifier and Type | Interface and Description |
---|---|
interface |
SctpServerChannel
接受传入SCTP / IP关联的SCTP / IP ServerChannel 。
|
Modifier and Type | Class and Description |
---|---|
class |
NioSctpServerChannel
SctpServerChannel 实现使用非阻塞模式接受新连接并为它们创建NioSctpChannel 。
|
Modifier and Type | Class and Description |
---|---|
class |
OioSctpServerChannel
SctpServerChannel 使用阻止模式接受新连接并为其创建OioSctpChannel 。
|
Modifier and Type | Interface and Description |
---|---|
interface |
ServerSocketChannel
接受传入TCP / IP连接的TCP / IP ServerChannel 。
|
Modifier and Type | Class and Description |
---|---|
class |
NioServerSocketChannel
一个使用基于NIO选择器的实现来接受新连接的 ServerSocketChannel 实现。
|
Modifier and Type | Class and Description |
---|---|
class |
OioServerSocketChannel
ServerSocketChannel 接受新的连接并为他们创建OioSocketChannel 。
|
Modifier and Type | Interface and Description |
---|---|
interface |
UdtServerChannel
已过时。
UDT运输不再维护并将被移除。
|
Modifier and Type | Class and Description |
---|---|
class |
NioUdtAcceptorChannel
已过时。
UDT运输不再维护并将被移除。
|
class |
NioUdtByteAcceptorChannel
已过时。
UDT运输不再维护并将被移除。
|
class |
NioUdtMessageAcceptorChannel
已过时。
UDT运输不再维护并将被移除。
|
Modifier and Type | Interface and Description |
---|---|
interface |
ServerDomainSocketChannel
|
Copyright © 2008–2018 The Netty Project. All rights reserved.