I am trying to find documentation indicating if java.util.concurrent.Future is/is not threadsafe. Eg can I safely give the same instance of Future to multiple threads, which will all call Future.get(...)?
I have tested code using Future in this manner and it seems to work fine but I'd be much happier if I could find documented expectation that future is safe for concurrent access in this manner.
Thanks.
Future.get()will be under "happens-before" guarantee. It's because each call compiled to the same assembly involving one or another form of en.wikipedia.org/wiki/Memory_barrier – Victor Sorokin Dec 5 '11 at 19:17