How would you implement something that works similarly to the Async CTP await keyword? Is there a simple implementation that works like await in all cases, or does await require different implementations for different scenarios?
| |||
|
feedback
|
|
It's possible that my some hacky use of iterator blocks (yield return) you could fake something similar... but it would be pretty ugly. I gave a DevExpress webinar on what the compiler is doing behind the scenes a few weeks ago - that shows decompiled code from a couple of examples, as well as explaining how the compiler builds a task to return, and what the "awaiter" has to do. It may be useful to you. | |||
|
feedback
|
|
The new Here is what it would look like.
Since
The whole bit about the There are some glaring limitations with this, but I hope this gives you the general idea. It also demonstrates how the CLR could have one generalized mechanism for implementing coroutines for which | |||
|
feedback
|
|
There are few implementations and examples of coroutines made out of iterators (yield). One of the examples is Caliburn.Micro framework, that uses this patter for asynchronous GUI operations. But it can easily be generalised for general async code. | |||
|
feedback
|
|
The MindTouch DReAM framework implements Coroutines on top of the Iterator pattern which is functionally very similar to Async/Await:
vs.
| |||
|
feedback
|
|
Bill Wagner from Microsoft wrote an article in MSDN Magazine about how you can use the Task Parallel Library in Visual Studio 2010 to implement async like behavior without adding a dependency on the async ctp. It uses | |||
|
feedback
|
|
From my reading, the major differences between
whereas with
| |||
|
feedback
|