Jan 23
Adrian has taken ideas from Herb Sutter, java.util.conrrency, and run with it.
He put together a small proof of concept which shows how aspects can really help you deal with concurrency issues. This also sits well with Futures (which Brian has been talking a lot about recently).
In theory you can @ParallelExecution on a method and nice things will happen. With Futures setup the threads can be kicked off, and .get(..) will be called to grab the return value.
Another great example for the AJSE library :)