Uses of Interface
io.netty5.channel.IoExecutionContext
-
Packages that use IoExecutionContext Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of IoExecutionContext in io.netty5.channel
Methods in io.netty5.channel with parameters of type IoExecutionContext Modifier and Type Method Description int
IoHandler. run(IoExecutionContext context)
Run the IO handled by thisIoHandler
. -
Uses of IoExecutionContext in io.netty5.channel.epoll
Methods in io.netty5.channel.epoll with parameters of type IoExecutionContext Modifier and Type Method Description int
EpollHandler. run(IoExecutionContext context)
-
Uses of IoExecutionContext in io.netty5.channel.kqueue
Methods in io.netty5.channel.kqueue with parameters of type IoExecutionContext Modifier and Type Method Description int
KQueueHandler. run(IoExecutionContext context)
-
Uses of IoExecutionContext in io.netty5.channel.local
Methods in io.netty5.channel.local with parameters of type IoExecutionContext Modifier and Type Method Description int
LocalHandler. run(IoExecutionContext runner)
-
Uses of IoExecutionContext in io.netty5.channel.nio
Methods in io.netty5.channel.nio with parameters of type IoExecutionContext Modifier and Type Method Description int
NioHandler. run(IoExecutionContext runner)
-