Parallel Programming for C++ Developers: Tasks and Continuations, Part 2 of 2

The recent Visual Studio Async CTP SP1 refresh includes many core improvements, bug fixes and new support for WP7 and VS Express. Architect Stephen Toub digs into some of the updates and explains how making your own awaitable types has gotten easier in this release. As usual, Stephen covers a lot of technical ground and shares his knowledge and insights very clearly. Tune in.
Get the latest Async CTP: https://msdn.microsoft.com/en-US/vstudio/async
Provide feedback/ask questions: https://social.msdn.microsoft.com/Forums/en-US/async/threads
nice. and Lucian Wischik is posting a serials of blog posts about this in details too
http://blogs.msdn.com/b/lucian/archive/2011/04/15/async-ctp-refresh-design-changes.aspx
I tend to think that so-called fluent APIs are sometimes abused, but it seems to me that something like
await t.ContinueOnCapturedContext();
would be more readable and a more flexible pattern for dealing with future unknowns.
I just realized the trusty DoEvents() was sort of an old school version of async. Schedule rest of me on the queue on current context.
Good work. Look forward to trying the new bits. Thank you.