(Quick Reference)
ConceptsThreadPoolOn multi-core systems you can benefit from having some tasks run asynchronously in the background, and so off-load your main thread of execution. The ThreadPool class allows you to easily start tasks in the background to be performed asynchronously and collect the results later. |