软件包 | 描述 |
---|---|
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.channel.oio |
旧阻止基于I / O的通道API实现 - 建议用于少量连接(<1000)。
|
io.netty.util.concurrent |
并发/异步任务的实用程序类。
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractEventLoopGroup
骨架实现 EventLoopGroup 。
|
class |
DefaultEventLoopGroup
MultithreadEventLoopGroup 必须用于当地运输。
|
class |
MultithreadEventLoopGroup
EventLoopGroup 实现的抽象基类, 它们同时处理具有多个线程的任务。
|
class |
ThreadPerChannelEventLoopGroup
一个 EventLoopGroup 创建一个EventLoop 每Channel 。
|
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 s。
|
Modifier and Type | Class and Description |
---|---|
class |
OioEventLoopGroup
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultEventExecutorGroup
默认实现 MultithreadEventExecutorGroup ,它将使用DefaultEventExecutor 实例来处理任务。
|
class |
MultithreadEventExecutorGroup
EventExecutorGroup 实现的抽象基类, 它们同时处理具有多个线程的任务。
|
Copyright © 2008–2018 The Netty Project. All rights reserved.