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 classDefaultSelectStrategyFactoryFactory which uses the default select strategy.Fields in io.netty5.channel declared as SelectStrategyFactory Modifier and Type Field Description static SelectStrategyFactoryDefaultSelectStrategyFactory. 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 IoHandlerFactoryEpollHandler. newFactory(int maxEvents, SelectStrategyFactory selectStrategyFactory)Returns a newIoHandlerFactorythat createsEpollHandlerinstances. -
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 IoHandlerFactoryKQueueHandler. newFactory(int maxEvents, SelectStrategyFactory selectStrategyFactory)Returns a newIoHandlerFactorythat createsKQueueHandlerinstances. -
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 IoHandlerFactoryNioHandler. newFactory(SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory)Returns a newIoHandlerFactorythat createsNioHandlerinstances.
-