Package | Description |
---|---|
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.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
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).
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultFileRegion
|
Modifier and Type | Method and Description |
---|---|
private boolean |
AbstractEpollStreamChannel.writeFileRegion(ChannelOutboundBuffer in,
FileRegion region,
int writeSpinCount) |
Modifier and Type | Method and Description |
---|---|
protected abstract long |
AbstractNioByteChannel.doWriteFileRegion(FileRegion region)
Write a
FileRegion |
Modifier and Type | Method and Description |
---|---|
private static void |
OioByteStreamChannel.checkEOF(FileRegion region) |
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. |
Modifier and Type | Method and Description |
---|---|
protected long |
NioSocketChannel.doWriteFileRegion(FileRegion region) |