C++ Threading #9: packaged_task

packaged_task provides a way to implement a task pool. It can conveniently convey the returned value from a task to a different thread. Notes can...
Back to Top