Is it possible to use Java FutureTask with a Spring TaskExecutor to get a Future object?

I'm looking for a TaskExecutor that implements the Java ExecutorService interface, in particular the submit() method. Looking through the Spring Javadocs doesn't reveal any classes like this. Is there some alternate method to handle futures through Spring TaskExecutors that I am unaware of?

If it is possible, could you also include an example?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Spring 3 has added submit methods with support for Future objects to AsyncTaskExecutor. Until then if you want access to Future objects I think you will need to get the underlying JDK executor (e.g. using getThreadPoolExecutor) and submit tasks directly on that.

link|improve this answer
Thanks Mark. Any caveats when using getThreadPoolExecutor? – James McMahon May 19 '09 at 16:18
Not that I know of as the Spring class simply passes its calls onto the underlying executor. – Mark May 19 '09 at 16:24
Strange they didn't expose some methods until Spring 3.0. – James McMahon May 19 '09 at 17:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.