views:

186

answers:

4

I'm currently trying to get my head around the CCR as a Asynchronous programming model. In the past i've used the standard begin/end methods. I primary develop in VB.net and have been looking with longing at the Yield/Enumerator tricks.

What is your favourite asychronous pattern?

+2  A: 

The Observer pattern.

Ed Swangren
Reaching for my Head-First Design Patterns Book...
Harry
+1  A: 

Asynchronous Programming Model

Oscar Cabrero
A: 

F# async workflows, or similar stuff from other .NET languages using LINQ as in

http://weblogs.asp.net/podwysocki/archive/2008/10/15/functional-c-implementing-async-computations-in-c.aspx

Brian