软件包 | 描述 |
---|---|
io.netty.channel |
核心频道API是异步和事件驱动的各种传输(如
NIO Channel)的抽象 。
|
io.netty.channel.nio |
基于
NIO的通道API实现 - 推荐用于大量连接(> = 1000)。
|
io.netty.util.concurrent |
并发/异步任务的实用程序类。
|
Modifier and Type | Interface and Description |
---|---|
interface |
EventLoop
一旦注册,将处理 Channel 的所有I / O操作。
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractEventLoop
骨架实施 EventLoop 。
|
class |
DefaultEventLoop |
class |
SingleThreadEventLoop
EventLoop 的抽象基类,在单个线程中执行其所有提交的任务。
|
class |
ThreadPerChannelEventLoop
SingleThreadEventLoop 这是用来处理OIO Channel 的。
|
Modifier and Type | Class and Description |
---|---|
class |
NioEventLoop
SingleThreadEventLoop 实现, 它将Channel 的Channel 注册到Selector ,事件循环中的这些实现也是多Selector 用的。
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultEventExecutor
默认 SingleThreadEventExecutor 实现, 它只是以串行方式执行所有提交的任务。
|
class |
SingleThreadEventExecutor
抽象基类 OrderedEventExecutor 的执行所有提交的任务在一个单一的线程。
|
Copyright © 2008–2018 The Netty Project. All rights reserved.