Package io.netty.channel.local
Class LocalEventLoopGroup
- All Implemented Interfaces:
EventLoopGroup
,EventExecutorGroup
,AutoCloseable
,Iterable<EventExecutor>
,Executor
,ExecutorService
,ScheduledExecutorService
Deprecated.
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Create a new instance with the default number of threads.LocalEventLoopGroup
(int nThreads) Deprecated.Create a new instanceLocalEventLoopGroup
(int nThreads, ThreadFactory threadFactory) Deprecated.Create a new instanceLocalEventLoopGroup
(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
Methods inherited from interface java.util.concurrent.ExecutorService
awaitTermination, close, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
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
Deprecated.Create a new instance with the default number of threads and the givenThreadFactory
.- Parameters:
threadFactory
- theThreadFactory
ornull
to use the default
-
LocalEventLoopGroup
Deprecated.Create a new instance- Parameters:
nThreads
- the number of threads to usethreadFactory
- theThreadFactory
ornull
to use the default
-
DefaultEventLoopGroup
instead.