Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using ScheduledThreadPoolExecutor:

threadPoolEx = new ScheduledThreadPoolExecutor(limit);

I want to know the number of tasks awaiting execution, or just to know if there are any tasks waiting (not necessarily the number).

How can I do that? Thanks.

share|improve this question

1 Answer

up vote 2 down vote accepted

ScheduledThreadPoolExecutor has a getQueue() method that you can use. You can query that for various bits of info on the waiting tasks (e.g. getQueue().getSize()).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.