Uses of Interface
io.netty5.channel.SelectStrategyFactory
-
Packages that use SelectStrategyFactory 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.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of SelectStrategyFactory in io.netty5.channel
Classes in io.netty5.channel that implement SelectStrategyFactory Modifier and Type Class Description class
DefaultSelectStrategyFactory
Factory which uses the default select strategy.Fields in io.netty5.channel declared as SelectStrategyFactory Modifier and Type Field Description static SelectStrategyFactory
DefaultSelectStrategyFactory. INSTANCE
-
Uses of SelectStrategyFactory in io.netty5.channel.epoll
Methods in io.netty5.channel.epoll with parameters of type SelectStrategyFactory Modifier and Type Method Description static IoHandlerFactory
EpollHandler. newFactory(int maxEvents, SelectStrategyFactory selectStrategyFactory)
Returns a newIoHandlerFactory
that createsEpollHandler
instances. -
Uses of SelectStrategyFactory in io.netty5.channel.kqueue
Methods in io.netty5.channel.kqueue with parameters of type SelectStrategyFactory Modifier and Type Method Description static IoHandlerFactory
KQueueHandler. newFactory(int maxEvents, SelectStrategyFactory selectStrategyFactory)
Returns a newIoHandlerFactory
that createsKQueueHandler
instances. -
Uses of SelectStrategyFactory in io.netty5.channel.nio
Methods in io.netty5.channel.nio with parameters of type SelectStrategyFactory Modifier and Type Method Description static IoHandlerFactory
NioHandler. newFactory(SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory)
Returns a newIoHandlerFactory
that createsNioHandler
instances.
-