Qual é a diferença entre packaged_task e async

Enquanto trabalhava com o modelo encadeado do C ++ 11, notei que std::packaged_task<int(int,int)> task([](int a, int b) { return a + b; }); auto f = task.get_future(); task(2,3); std::cout << f.get() << '\n'; e auto f = std::async(std::launch::async, [](int a, int b) { return...