程序包 | 说明 |
---|---|
io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
io.netty.channel.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.oio |
Old blocking I/O based channel API implementation - recommended for
a small number of connections (< 1000).
|
io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.udt.nio |
UDT Transport for NIO Channels.
|
限定符和类型 | 类和说明 |
---|---|
class |
DefaultFileRegion
|
限定符和类型 | 方法和说明 |
---|---|
protected abstract long |
AbstractNioByteChannel.doWriteFileRegion(FileRegion region)
Write a
FileRegion |
限定符和类型 | 方法和说明 |
---|---|
protected void |
OioByteStreamChannel.doWriteFileRegion(FileRegion region) |
protected abstract void |
AbstractOioByteChannel.doWriteFileRegion(FileRegion region)
Write the data which is hold by the
FileRegion to the underlying Socket. |
限定符和类型 | 方法和说明 |
---|---|
protected long |
NioSocketChannel.doWriteFileRegion(FileRegion region) |
限定符和类型 | 方法和说明 |
---|---|
protected long |
NioUdtByteConnectorChannel.doWriteFileRegion(FileRegion region)
已过时。
|