Showing results for waitable - C++ Team Blog

Apr 4, 2016
0
0

Using C++ Coroutines to simplify async UWP code

EricMittelette
EricMittelette

The Universal Windows Platform (UWP) introduced many async APIs; there are now almost 1700 of them. In fact, the team switched every API that could take 50ms or more to complete to async mode. Coding with the async pattern is not an easy task, especially in C++ where you have to create a ppl task and use a continuation (.then) with some ...

Coroutine

Feedback