Tasks, Monads, and LINQ
Tasks, Monads, and LINQ
A few years back, Wes Dyer wrote a great post on monads, and more recently, Eric Lippert wrote a terrific blog series
exploring monads and C#. In that series, Eric alluded to Task<TResult> several times, so I thought I’d share a few related
thoughts on Task<TResult> and the async/await keywords.
As both Wes and Eric highlight, a monad is a triple consisting of a type, a Unit function (often called Return), and a Bind
function. If the type in question is Task<T>, what are its Unit and Bind functions?
The Unit operator takes a T and “amplifies” it into an instance of the type:
That’s exactly what Task.FromResult does, producing a Task<T> from a T, so our Unit method can easily be implemented
as a call to FromResult:
What about Bind? The Bind operator takes the instance of our type, extracts the value from it, runs a function over that
value to get a new amplified value, and returns that amplified value:
If you squint at this, and if you’ve read my previous blog post Implementing Then with Await, the structure of this
declaration should look eerily like the last overload of Then discussed:
In fact, other than the symbols chosen, they’re identical, and we can implement Bind just as we implemented Then:
This is possible so concisely because await and async are so close in nature to the monadic operators. When you write an
async function that returns Task<V>, the compiler expects the body of the method to return a V, and it lifts (or amplifies)
that V into the Task<V> that’s returned from the method call; this is basically Unit (async, of course, also handles the
creation and completion of the returned Task for the case where an exception propagates out of the body of the async
method). Further, a core piece of the Bind operator is in extracting the value from the supplied instance, and that’s nicely
handled by await.
In Eric’s last post on monads, he talks about some of the C# LINQ operators, and how they can easily be implemented on
top of types that correctly implement a Unit and a Bind method:
Sure enough, with our Bind and Unit implementations around Task<T>, we can substitute in “Task” for “M”, and it “just
works”:
What does it mean here to “just work”? It means we can start writing LINQ queries using the C# query comprehension
syntax with operators that rely on SelectMany, e.g.
Of course, we can implement SelectMany without Bind and Unit, just using async/await directly:
In fact, we can implement many of the LINQ query operators simply and efficiently using async/await. The C# specification
section 7.16.3 lists which operators we need to implement to support all of the C# query comprehension syntax, i.e. all of
the LINQ contextual keywords in C#, such as select and where. Some of these operators, like OrderBy, make little sense
when dealing with singular values as we have with Task<T>, but we can easily implement the others. This enables using
most of the C# LINQ query comprehension syntax with Tasks:
Interestingly, Task<TResult> already has the members necessary to be considered “comonadic.” As Brian Beckman
blogs.msdn.com/b/pfxteam/archive/2013/04/03/tasks-monads-and-linq.aspx 2/5
8/5/13 Tasks, Monads, and LINQ - .NET Parallel Programming - Site Home - MSDN Blogs
discusses in his precis, a comonad is the dual of a monad, a triple consisting of the type and two operators: Extract (the
flip of Unit/Return) and Extend (the flip of Bind). Here I’ve taken a few liberties with the signatures from what Brian outlines,
such as swapping the order of some of the parameters:
(In truth, to correctly implement all of the comonadic laws Brian outlines, we’d likely want to tweak both of these with a thin
layer of additional code to modify some corner cases around exceptions and cancellation, due to how Result propagates
exceptions wrapped in AggregateException and how ContinueWith tries to match thrown OperationCanceledExceptions
against the CancellationToken supplied to ContinueWith. But the basic idea stands.)
Most of the posts I write on this blog are about practical things. So, is any of this really useful in everyday coding with
Tasks and async/await? Would you actually want to implement and use the LINQ surface area directly for Tasks? Eh,
probably not. But it’s a fun to see how all of these things relate.
(Update 4/3/2013: Thanks to Aaron Lahman for pointing out the bug I had in my GroupJoin implementation. Fixed.)
Comments
4 Apr 2013 1:49 AM
Tom
Really like your posts, keep it up! And thanks to Eric I now know what a monad is.
I have aquestion concerning exceptions thrown in a Task returning method. Should all exceptions of a Task returning
method be thrown inside the returned task (so that the caller does not need to guide the method call itself inside a
try catch block) or is it ok to throw some exceptions (for example input validation or invalid state) before the
returned task is set up (fail fast) whereas the caller needs to be aware to protect the method call itself (besides
checking the returned task's result)?
(In the latter case the caller's code might get a little verbose especially when chaining tasks...)
Or is it just a matter of taste and you should document the method call accordingly? I'd really apprechiate your
thoughts or guideline on that.
Example:
// input validation:
if(x < 0)
// so that caller just needs to ckeck the returned task for exceptions
// and not guide the method call itself inside a try catch block?
if(x < 0)
});
@Stephen
Very awesome stuff. Should've figured it'd be this easy with await.
A a = await task;
B b = await function(a);
« Would you actually want to implement and use the LINQ surface area directly for Tasks? Eh, probably not.»
Actually, this is essentially the point of Reactive Extensions (Rx) (and libraries conceptually near to Rx like
LinqToAwait): using monads and LINQ operators and LINQ-like operators you can do some very complex
asynchronous programming in very simple-appearing "query" structures.
@Tom: Please see the document at www.microsoft.com/.../details.aspx, and specifically the end of page 3 /
beginning of page 4 where it talks about this.
@Tristan: The "Roslyn" forum at social.msdn.microsoft.com/.../roslyn is a good place to ask questions about
"Roslyn".
@Max Battcher: Rx is about working with collections, and these kinds of query operations are very useful for
working with collections; they're less useful for types with at most one value, like Task<T>. Do you have an example
in mind where the query operators I've implemented in this post make using C# query comprehension syntax much
better for working with Task<T> than does async/await? I've not thought of a good one.
Presumably all of the "await" subjects should have ".ConfigureAwait(false)" added, since none of the continuations
rely on the synchronization context?
@Richard: It's a good question. I debated doing so. Normally my answer would be a definitive "yes!" but because
most of these methods take user-supplied delegates that are invoked after an await, using ConfigureAwait(false) on
all of the awaits would mean that many of these delegates would not be run back on the original context, and it's
not clear whether that would be desirable or not. I'll leave it up to someone using this code to decide whether to
augment it appropriately, if anyone actually uses the code (as I mention in the post, this was more thought
experiment than anything else). In general, yes, try to use ConfigureAwait(false) on all awaits in libraries unless
blogs.msdn.com/b/pfxteam/archive/2013/04/03/tasks-monads-and-linq.aspx 4/5
8/5/13 Tasks, Monads, and LINQ - .NET Parallel Programming - Site Home - MSDN Blogs
there's a good reason not to.
Thanks for your response, Stephen, I was not aware of that document, it helped a lot. (Before commenting on your
blog I searched the web and actually assumed to find my question answered at stackoverflow - but I did not find
some answer.)
So I will put the "usage" checks (like argument and state validation) before the task creating block of the method.
Thanks again.
Thanks so much for this post Stephen. I have been trying to get my head around how Tasks are related to
continuations, coroutines, monads and this is extremely helpful.
-Kurt
blogs.msdn.com/b/pfxteam/archive/2013/04/03/tasks-monads-and-linq.aspx 5/5