如何在执行程序服务中获取队列中的任务数?

时间:2017-09-02 21:51:21

标签: java multithreading executorservice threadpoolexecutor

所以我使用executorservice来创建一个线程池。

ExecutorService executor = Executors.newSingleThreadExecutor();

我正在尝试访问线程池队列中的任务数。我看到没有方法可以做到这一点。 我知道有一些方法可以在threadpoolexecutor中获取队列大小,但是如何使用executorservice对象来实现这一点。

就像我说的那样,如果我创建了像这样的ThreadpoolExecutor

,我就可以得到队列信息
ThreadPoolExecutor tpExecutor =  new ThreadPoolExecutor(1, 1, 0L, TimeUnit.MILLISECONDS,new LinkedBlockingQueue<Runnable>());

我知道我可以使用tpExecutor.queue.size()来获取threadpool队列中的任务数。 但是目前我已经使用Executor Service声明了我的线程池。我怎样才能做到这一点? 如果人们可以编写代码并进行演示,那将是值得注意的。

2 个答案:

答案 0 :(得分:0)

我认为这应该可行:

    ThreadPoolExecutor threadPoolExecutor = (ThreadPoolExecutor) this.executorService;
    int activeCount = threadPoolExecutor.getActiveCount();
    long taskCount = threadPoolExecutor.getTaskCount();
    long completedTaskCount = threadPoolExecutor.getCompletedTaskCount();
    long tasksToDo = taskCount - completedTaskCount - activeCount;

答案 1 :(得分:-2)

您可以将其强制转换为ThreadPoolExecutor。

ThreadPoolExecutor ex =(ThreadPoolExecutor)executor; ex.getQueue()大小();