Class DefaultEventLoopGroup

    • Constructor Detail

      • DefaultEventLoopGroup

        public DefaultEventLoopGroup()
        Deprecated.
        Create a new instance with the default number of threads.
      • DefaultEventLoopGroup

        public DefaultEventLoopGroup​(int nThreads)
        Deprecated.
        Create a new instance
        Parameters:
        nThreads - the number of threads to use
      • DefaultEventLoopGroup

        public DefaultEventLoopGroup​(java.util.concurrent.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
      • DefaultEventLoopGroup

        public DefaultEventLoopGroup​(int nThreads,
                                     java.util.concurrent.ThreadFactory threadFactory)
        Deprecated.
        Create a new instance
        Parameters:
        nThreads - the number of threads to use
        threadFactory - the ThreadFactory or null to use the default
      • DefaultEventLoopGroup

        public DefaultEventLoopGroup​(int nThreads,
                                     java.util.concurrent.Executor executor)
        Deprecated.
        Create a new instance
        Parameters:
        nThreads - the number of threads to use
        executor - the Executor to use, or null if the default should be used.