File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Threads and Synchronization and the fly likes ThreadpoolExecutor error Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Threads and Synchronization
Reply Bookmark "ThreadpoolExecutor error" Watch "ThreadpoolExecutor error" New topic
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: 1624

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
 
WebSphere development made easy
without the weight of IBM tools
http://www.myeclipseide.com