How to ensure that the exception thrown by @Asynchronous method from EJB 3.1 methods are not silently eaten up by Future?
I know one can use Future.get method to retrieve exception but it will wait till the computation is done, a problem in case no exception occur and you have to wait till the computation is over.
(Update)
The scenario is fairly simple. A stateless EJB exposes its method with @Asynchronous annotation, primarily intended for @Local. The AS is JBoss. During computation, its possible that a RuntimeException occurs. Clients may or may not want to poll if the job is finished, but in all cases they should know if exception has occurred. A workaround is possible to use some sort of callback, but I am interested if there is any out of box solution available.
Future.get()returns immediately throwing the exception. I do not understand your last statement clearly. If there is no exception , obviously there is nothing to bother about until the computation is complete , right ? – Bhaskar Oct 7 '11 at 15:55ThreadPoolExcutorwith aThreadFactorythat producesThreadwhich have theirUncaughtExceptionHandlerset ? I am not 100% sure it will work but its the best that comes to my mind immediately. – Bhaskar Oct 7 '11 at 16:11