Package | Description |
---|---|
io.netty.channel.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
Modifier and Type | Method and Description |
---|---|
private static void |
NioEventLoop.invokeChannelUnregistered(NioTask<java.nio.channels.SelectableChannel> task,
java.nio.channels.SelectionKey k,
java.lang.Throwable cause) |
private static void |
NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey k,
NioTask<java.nio.channels.SelectableChannel> task) |
void |
NioEventLoop.register(java.nio.channels.SelectableChannel ch,
int interestOps,
NioTask<?> task)
Registers an arbitrary
SelectableChannel , not necessarily created by Netty, to the Selector
of this event loop. |