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

Are there any circumstances under which a ThreadPoolExecutor.CallerRunsPolicy will throw a RejectedExecutionException?

It seems to me that the policy itself is intended to prevent throwing these Exceptions. The API for its interface method, RejectedExecutionHandler.rejectedExecution() claims that it may throw a RejectedExecutionException. The API for CallerRunsPolicy.rejectedExecution() does not.

Summary: Do I need to explicitly handle a RejectedExecutionException on execute() if I'm using a CallerRunsPolicy?

share|improve this question

1 Answer

up vote 2 down vote accepted

No, you don't. ThreadPoolExecutor.CallerRunsPolicy would never throw RejectedExecutionException unless you explicitly throw it under Runnable#run

share|improve this answer
That's my understanding, too. Have you found any API documentation that confirms this? – Rob Hruska Dec 21 '10 at 20:44
Also, the source for JDK6 backs you up. But I'd rather have the API tell me specifically. :) - I'll accept this answer, anyway. – Rob Hruska Dec 21 '10 at 20:58
No, I didn't find any API docs stating that, I've checked JDK 6 ThreadPoolExecutor.CallerRunsPolicy sources. That's easy to understand no exception is thrown there. – archer Dec 22 '10 at 13:34

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.