tags:

views:

102

answers:

3

Can anyone suggest a good documentation/tutorial/book about Future in Java?

+3  A: 

The bible is Java Concurrency in Practice.

cletus
+2  A: 

The javadoc itself of the concurrent package is pretty darn good. I think it's one of the most beautifully javadoced code in JDK.

Suraj Chandran
+2  A: 

Concurrent Programming in Java(TM): Design Principles and Patterns (2nd Edition) by Doug Lea. This is the book by the author of java.util.concurrent package. Java Concurrency in Practice is a very good book, too.

Thomas Jung