...

/

async: Start Policy

async: Start Policy

This lesson gives an overview of the start policy used with std::async in C++ for concurrency.

We'll cover the following...

With the start policy, we can explicitly specify whether the asynchronous call should be executed in the same thread (std::launch::deferred) or in another thread (std::launch::async).

...