Class LocalEventLoopGroup

All Implemented Interfaces:
EventLoopGroup, EventExecutorGroup, AutoCloseable, Iterable<EventExecutor>, Executor, ExecutorService, ScheduledExecutorService

@Deprecated public class LocalEventLoopGroup extends DefaultEventLoopGroup
Deprecated.
  • 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

      public LocalEventLoopGroup(ThreadFactory threadFactory)
      Deprecated.
      Create a new instance with the default number of threads and the given ThreadFactory.
      Parameters:
      threadFactory - the ThreadFactory or null to use the default
    • LocalEventLoopGroup

      public LocalEventLoopGroup(int nThreads, ThreadFactory threadFactory)
      Deprecated.
      Create a new instance
      Parameters:
      nThreads - the number of threads to use
      threadFactory - the ThreadFactory or null to use the default