软件包 | 描述 |
---|---|
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.nio |
基于
NIO的通道API实现 - 推荐用于大量连接(> = 1000)。
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultEventLoopGroup
MultithreadEventLoopGroup 必须用于当地运输。
|
Modifier and Type | Class and Description |
---|---|
class |
EpollEventLoopGroup
EventLoopGroup 其中使用epoll的封面。
|
Modifier and Type | Class and Description |
---|---|
class |
KQueueEventLoopGroup |
Modifier and Type | Class and Description |
---|---|
class |
LocalEventLoopGroup
已过时。
改为使用
DefaultEventLoopGroup 。
|
Modifier and Type | Class and Description |
---|---|
class |
NioEventLoopGroup
MultithreadEventLoopGroup 用于NIO Selector Channel 的实现。
|
Copyright © 2008–2018 The Netty Project. All rights reserved.