软件包 | 描述 |
---|---|
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)。
|
io.netty.util.concurrent |
并发/异步任务的实用程序类。
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultEventLoopGroup
MultithreadEventLoopGroup 必须用于当地交通。
|
class |
MultithreadEventLoopGroup
EventLoopGroup 实现的抽象基类, 它们同时处理具有多个线程的任务。
|
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 用于基于Channel 的NIO Selector 的实现 。
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultEventExecutorGroup
Default implementation of
MultithreadEventExecutorGroup which will use
DefaultEventExecutor instances to handle the tasks.
|
Copyright © 2008–2018 The Netty Project. All rights reserved.