Package io.netty.channel.local
Class LocalEventLoopGroup
- java.lang.Object
-
- All Implemented Interfaces:
EventLoopGroup,EventExecutorGroup,java.lang.Iterable<EventExecutor>,java.util.concurrent.Executor,java.util.concurrent.ExecutorService,java.util.concurrent.ScheduledExecutorService
@Deprecated public class LocalEventLoopGroup extends DefaultEventLoopGroup
Deprecated.UseDefaultEventLoopGroupinstead.
-
-
Constructor Summary
Constructors Constructor Description LocalEventLoopGroup()Deprecated.Create a new instance with the default number of threads.LocalEventLoopGroup(int nThreads)Deprecated.Create a new instanceLocalEventLoopGroup(int nThreads, java.util.concurrent.ThreadFactory threadFactory)Deprecated.Create a new instanceLocalEventLoopGroup(java.util.concurrent.ThreadFactory threadFactory)Deprecated.Create a new instance with the default number of threads and the givenThreadFactory.
-
Method Summary
-
Methods inherited from class io.netty.channel.DefaultEventLoopGroup
newChild
-
Methods inherited from class io.netty.channel.MultithreadEventLoopGroup
newDefaultThreadFactory, next, register, register, register
-
Methods inherited from class io.netty.util.concurrent.MultithreadEventExecutorGroup
awaitTermination, executorCount, isShutdown, isShuttingDown, isTerminated, iterator, shutdown, shutdownGracefully, terminationFuture
-
Methods inherited from class io.netty.util.concurrent.AbstractEventExecutorGroup
execute, invokeAll, invokeAll, invokeAny, invokeAny, schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, shutdownGracefully, shutdownNow, submit, submit, submit
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.netty.util.concurrent.EventExecutorGroup
isShuttingDown, iterator, schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, shutdown, shutdownGracefully, shutdownGracefully, shutdownNow, submit, submit, submit, terminationFuture
-
-
-
-
Constructor Detail
-
LocalEventLoopGroup
public LocalEventLoopGroup()
Deprecated.Create a new instance with the default number of threads.
-
LocalEventLoopGroup
public LocalEventLoopGroup(int nThreads)
Deprecated.Create a new instance- Parameters:
nThreads- the number of threads to use
-
LocalEventLoopGroup
public LocalEventLoopGroup(java.util.concurrent.ThreadFactory threadFactory)
Deprecated.Create a new instance with the default number of threads and the givenThreadFactory.- Parameters:
threadFactory- theThreadFactoryornullto use the default
-
LocalEventLoopGroup
public LocalEventLoopGroup(int nThreads, java.util.concurrent.ThreadFactory threadFactory)Deprecated.Create a new instance- Parameters:
nThreads- the number of threads to usethreadFactory- theThreadFactoryornullto use the default
-
-