软件包 | 描述 |
---|---|
io.netty.channel |
核心通道API是异步和事件驱动的各种传输(如
NIO Channel)的抽象 。
|
io.netty.channel.nio |
基于
NIO的通道API实现 - 推荐用于大量连接(> = 1000)。
|
io.netty.util.concurrent |
并发/异步任务的实用程序类。
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultEventLoop |
class |
SingleThreadEventLoop
EventLoop 的抽象基类,它在单个线程中执行其所有提交的任务。
|
class |
ThreadPerChannelEventLoop
SingleThreadEventLoop 这是用来处理OIO Channel 的。
|
Modifier and Type | Class and Description |
---|---|
class |
NioEventLoop
SingleThreadEventLoop 执行哪一个寄存器的Channel “s到一个Selector 也是如此在事件循环的这些多路复用。
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultEventExecutor
默认 SingleThreadEventExecutor 实现, 它只是以串行方式执行所有提交的任务。
|
Modifier and Type | Method and Description |
---|---|
void |
RejectedExecutionHandler.rejected(java.lang.Runnable task, SingleThreadEventExecutor executor)
当有人试图将任务添加到 SingleThreadEventExecutor 时调用,但由于容量限制而失败。
|
Copyright © 2008–2018 The Netty Project. All rights reserved.