软件包 | 描述 |
---|---|
io.netty.channel |
核心频道API是异步和事件驱动的各种传输(如
NIO Channel)的抽象 。
|
io.netty.channel.nio |
基于
NIO的通道API实现 - 推荐用于大量连接(> = 1000)。
|
io.netty.channel.oio |
旧阻止基于I / O的通道API实现 - 建议用于少量连接(<1000)。
|
io.netty.channel.socket.nio |
NIO基于套接字通道的API实现 - 推荐用于大量连接(> = 1000)。
|
io.netty.channel.udt.nio |
用于NIO通道的UDT传输。
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultFileRegion
从 FileChannel 或File 传输数据的默认FileRegion 实施。
|
Modifier and Type | Method and Description |
---|---|
FileRegion |
FileRegion.retain() |
FileRegion |
DefaultFileRegion.retain() |
FileRegion |
FileRegion.retain(int increment) |
FileRegion |
DefaultFileRegion.retain(int increment) |
FileRegion |
FileRegion.touch() |
FileRegion |
DefaultFileRegion.touch() |
FileRegion |
FileRegion.touch(java.lang.Object hint) |
FileRegion |
DefaultFileRegion.touch(java.lang.Object hint) |
Modifier and Type | Method and Description |
---|---|
protected abstract long |
AbstractNioByteChannel.doWriteFileRegion(FileRegion region)
写一个 FileRegion
|
Modifier and Type | Method and Description |
---|---|
protected void |
OioByteStreamChannel.doWriteFileRegion(FileRegion region) |
protected abstract void |
AbstractOioByteChannel.doWriteFileRegion(FileRegion region)
将 FileRegion 保存的数据写入底层套接字。
|
Modifier and Type | Method and Description |
---|---|
protected long |
NioSocketChannel.doWriteFileRegion(FileRegion region) |
Modifier and Type | Method and Description |
---|---|
protected long |
NioUdtByteConnectorChannel.doWriteFileRegion(FileRegion region)
已过时。
|
Copyright © 2008–2018 The Netty Project. All rights reserved.