This content has been marked as final.
Show 3 replies
-
1. Re: An Exception handling case in threads
jmesnil Jul 31, 2009 11:50 AM (in response to gaohoward)Maybe you should use a Callable instead (from JSE 5 or the backport-concurrent jar)
http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/Callable.html -
2. Re: An Exception handling case in threads
gaohoward Jul 31, 2009 12:09 PM (in response to gaohoward)It seems will do the job. I'll try it. Thanks Jeff.
-
3. Re: An Exception handling case in threads
timfox Aug 2, 2009 7:39 AM (in response to gaohoward)"jmesnil" wrote:
Maybe you should use a Callable instead (from JSE 5 or the backport-concurrent jar)
http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/Callable.html
+1. That's what Callable is for.