async2 - The .NET Runtime Async experiment concludes
-
The .NET team has been working on a new experiment called async2, which is a new implementation of the async/await pattern that is designed to be more efficient and more flexible than the current implementation.
Don't let me interrupt you while you await this
-
The .NET team has been working on a new experiment called async2, which is a new implementation of the async/await pattern that is designed to be more efficient and more flexible than the current implementation.
Don't let me interrupt you while you await this
I wonder how much of that has to do with interactions with test frameworks/suites. Ran into something odd this week where the fix was the classic wait
await Task.Delay(TimeSpan.FromSeconds(1));
Since it is only in a test, not so bad. There was a time it would've bugged me enough to figure out where things were going south with threading. However much I do love some black boxes - that's a chief feature of a good one... You never notice it is one because you never need to look so far inside anyway. If Redmond is still not so sure it's all it could be, I'd be inclined to agree.