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.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, io.netty5.util.concurrent.RejectedExecutionHandler rejectedHandler)Create a new instance.MultithreadEventLoopGroup(int nThreads, Executor executor, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, io.netty5.util.concurrent.RejectedExecutionHandler rejectedHandler, int maxTasksPerRun)Create a new instance.MultithreadEventLoopGroup(int nThreads, Executor executor, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, io.netty5.util.concurrent.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, io.netty5.util.concurrent.RejectedExecutionHandler rejectedHandler)Create a new instance.MultithreadEventLoopGroup(int nThreads, ThreadFactory threadFactory, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, io.netty5.util.concurrent.RejectedExecutionHandler rejectedHandler, int maxTasksPerRun)Create a new instance.MultithreadEventLoopGroup(int nThreads, ThreadFactory threadFactory, IoHandlerFactory ioHandlerFactory, int maxPendingTasks, io.netty5.util.concurrent.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.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.
-