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 IoHandlerFactory
EpollHandler. newFactory()
Returns a newIoHandlerFactory
that createsEpollHandler
instances.static IoHandlerFactory
EpollHandler. newFactory(int maxEvents, SelectStrategyFactory selectStrategyFactory)
Returns a newIoHandlerFactory
that createsEpollHandler
instances. -
Uses of IoHandlerFactory in io.netty5.channel.kqueue
Methods in io.netty5.channel.kqueue that return IoHandlerFactory Modifier and Type Method Description static IoHandlerFactory
KQueueHandler. newFactory()
Returns a newIoHandlerFactory
that createsKQueueHandler
instances.static IoHandlerFactory
KQueueHandler. newFactory(int maxEvents, SelectStrategyFactory selectStrategyFactory)
Returns a newIoHandlerFactory
that createsKQueueHandler
instances. -
Uses of IoHandlerFactory in io.netty5.channel.local
Methods in io.netty5.channel.local that return IoHandlerFactory Modifier and Type Method Description static IoHandlerFactory
LocalHandler. newFactory()
Returns a newIoHandlerFactory
that createsLocalHandler
instances. -
Uses of IoHandlerFactory in io.netty5.channel.nio
Methods in io.netty5.channel.nio that return IoHandlerFactory Modifier and Type Method Description static IoHandlerFactory
NioHandler. newFactory()
Returns a newIoHandlerFactory
that createsNioHandler
instances.static IoHandlerFactory
NioHandler. newFactory(SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory)
Returns a newIoHandlerFactory
that createsNioHandler
instances.
-