| Author |
ThreadpoolExecutor error
|
manisha makwana
Ranch Hand
Joined: Sep 14, 2007
Posts: 37
|
|
Hi,
here is my code.This code always give the following error
java.util.concurrent.RejectedExecutionException
at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.reject(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.execute(Unknown Source)
final ArrayBlockingQueue<Runnable> queue = new ArrayBlockingQueue(3);
ThreadPoolExecutor threadPool = new ThreadPoolExecutor(1, 3,30000, TimeUnit.SECONDS, queue);
threadPool.execute(new ResumeParserAPI(resumePath,userData,resumeServiceURL,userSession,service,attachmentURL));
|
 |
Nitesh Kant
Bartender
Joined: Feb 25, 2007
Posts: 1629
|
|
|
If you see the javadocs for ThreadPoolExecutor, there is a section for Rejected Tasks. Can you find a reason there why your threadpool will reject tasks?
|
apigee, a better way to API!
|
 |
 |
|
|
subject: ThreadpoolExecutor error
|
|
|