Posts

promiseFuture

Promise and Future

/
With std::promise and std::future, you have full control over the task. Full control over the task A…
packagedTask

Asynchronous Callable Wrappers

/
std::packaged_task enables you to write a simple wrapper for a callable, which you can invoke later. std::packaged_task To…
async

Asynchronous Function Calls

/
std:.async feels like an asynchronous function call. Under the hood std::async is a task. One, which…
tasksEng

Tasks

/
Tasks were one of the latest additions to the C++11 standard. They give you a better abstraction than…