Uses of Interface
io.netty5.channel.IoHandlerFactory
-
Packages that use IoHandlerFactory 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 IoHandlerFactory in io.netty5.channel
Constructors in io.netty5.channel with parameters of type IoHandlerFactory Constructor Description MultithreadEventLoopGroup(int nThreads, IoHandlerFactory ioHandlerFactory)Create a new instance.MultithreadEventLoopGroup(int nThreads, Executor executor, IoHandlerFactory ioHandlerFactory)Create a new instance.MultithreadEventLoopGroup(int nThreads, Executor executor, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, RejectedExecutionHandler rejectedHandler)Create a new instance.MultithreadEventLoopGroup(int nThreads, Executor executor, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, RejectedExecutionHandler rejectedHandler, int maxTasksPerRun)Create a new instance.MultithreadEventLoopGroup(int nThreads, Executor executor, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, RejectedExecutionHandler rejectedHandler, int maxTasksPerRun, Object... args)Create a new instance.MultithreadEventLoopGroup(int nThreads, ThreadFactory threadFactory, IoHandlerFactory ioHandlerFactory)Create a new instance.MultithreadEventLoopGroup(int nThreads, ThreadFactory threadFactory, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, RejectedExecutionHandler rejectedHandler)Create a new instance.MultithreadEventLoopGroup(int nThreads, ThreadFactory threadFactory, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, RejectedExecutionHandler rejectedHandler, int maxTasksPerRun)Create a new instance.MultithreadEventLoopGroup(int nThreads, ThreadFactory threadFactory, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, RejectedExecutionHandler rejectedHandler, int maxTasksPerRun, Object... args)Create a new instance.MultithreadEventLoopGroup(IoHandlerFactory ioHandlerFactory)Create a new instance.MultithreadEventLoopGroup(Executor executor, IoHandlerFactory ioHandlerFactory)Create a new instance.MultithreadEventLoopGroup(ThreadFactory threadFactory, IoHandlerFactory ioHandlerFactory)Create a new instance. -
Uses of IoHandlerFactory in io.netty5.channel.epoll
Methods in io.netty5.channel.epoll that return IoHandlerFactory Modifier and Type Method Description static IoHandlerFactoryEpollHandler. newFactory()Returns a newIoHandlerFactorythat createsEpollHandlerinstances.static IoHandlerFactoryEpollHandler. newFactory(int maxEvents, SelectStrategyFactory selectStrategyFactory)Returns a newIoHandlerFactorythat createsEpollHandlerinstances. -
Uses of IoHandlerFactory in io.netty5.channel.kqueue
Methods in io.netty5.channel.kqueue that return IoHandlerFactory Modifier and Type Method Description static IoHandlerFactoryKQueueHandler. newFactory()Returns a newIoHandlerFactorythat createsKQueueHandlerinstances.static IoHandlerFactoryKQueueHandler. newFactory(int maxEvents, SelectStrategyFactory selectStrategyFactory)Returns a newIoHandlerFactorythat createsKQueueHandlerinstances. -
Uses of IoHandlerFactory in io.netty5.channel.local
Methods in io.netty5.channel.local that return IoHandlerFactory Modifier and Type Method Description static IoHandlerFactoryLocalHandler. newFactory()Returns a newIoHandlerFactorythat createsLocalHandlerinstances. -
Uses of IoHandlerFactory in io.netty5.channel.nio
Methods in io.netty5.channel.nio that return IoHandlerFactory Modifier and Type Method Description static IoHandlerFactoryNioHandler. newFactory()Returns a newIoHandlerFactorythat createsNioHandlerinstances.static IoHandlerFactoryNioHandler. newFactory(SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory)Returns a newIoHandlerFactorythat createsNioHandlerinstances.
-