Uses of Interface
io.netty.channel.nio.NioTask
-
Packages that use NioTask Package Description io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of NioTask in io.netty.channel.nio
Methods in io.netty.channel.nio with parameters of type NioTask Modifier and Type Method 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 arbitrarySelectableChannel
, not necessarily created by Netty, to theSelector
of this event loop.private void
NioEventLoop. register0(java.nio.channels.SelectableChannel ch, int interestOps, NioTask<?> task)
-