Class ExtendedScheduledExecutor

    • Constructor Detail

      • ExtendedScheduledExecutor

        public ExtendedScheduledExecutor​(int corePoolSize)
        Constructs a new instance.
        Parameters:
        corePoolSize - Thread pool size.
      • ExtendedScheduledExecutor

        public ExtendedScheduledExecutor​(int corePoolSize,
                                         ThreadFactory threadFactory)
        Constructs a new instance.
        Parameters:
        corePoolSize - Thread pool size.
        threadFactory - Thread factory.
      • ExtendedScheduledExecutor

        public ExtendedScheduledExecutor​(int corePoolSize,
                                         RejectedExecutionHandler handler)
        Constructs a new instance.
        Parameters:
        corePoolSize - Thread pool size.
        handler - Rejected execution handler.
      • ExtendedScheduledExecutor

        public ExtendedScheduledExecutor​(int corePoolSize,
                                         ThreadFactory threadFactory,
                                         RejectedExecutionHandler handler)
        Constructs a new instance.
        Parameters:
        corePoolSize - Thread pool size.
        threadFactory - Thread factory.
        handler - Rejected execution handler.