I\'m trying to wrap my head around the TPL, the new async
/ await
features in C# 5, and the mysteries of TaskCompletionSource
.
One
I suspect the point is that if there's only one thing which will be setting the result, just call SetResult
etc. If you end up calling SetResult
twice, that indicates a bug. (Likewise if the TaskCompletionSource
has been disposed.)
If you've got several threads which could all be trying to set the result at the same time (e.g. it's there to indicate the first result out of several parallel web service calls) then use TrySetResult
, as it's entirely reasonable for multiple threads to "try" to set the result, unaware of whether another thread has already set it.
I've not seen any official guidance on it, but that would make sense.