Package io.netty.channel.local
Class LocalEventLoopGroup
- java.lang.Object
-
- All Implemented Interfaces:
EventLoopGroup
,IoEventLoopGroup
,EventExecutorGroup
,java.lang.Iterable<EventExecutor>
,java.util.concurrent.Executor
,java.util.concurrent.ExecutorService
,java.util.concurrent.ScheduledExecutorService
@Deprecated public class LocalEventLoopGroup extends MultiThreadIoEventLoopGroup
Deprecated.
-
-
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.MultiThreadIoEventLoopGroup
newChild, newChild, next
-
Methods inherited from class io.netty.channel.MultithreadEventLoopGroup
newDefaultThreadFactory, 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 io.netty.channel.EventLoopGroup
register
-
Methods inherited from interface java.util.concurrent.ExecutorService
awaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated
-
Methods inherited from interface io.netty.channel.IoEventLoopGroup
isCompatible, isIoType, register, register, register
-
-
-
-
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
- theThreadFactory
ornull
to 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
- theThreadFactory
ornull
to use the default
-
-