structured_task_group クラスとともに関数オブジェクトをラップするために使用されるテンプレート・クラス。
task_handle クラスは、主に structured_task_group クラスとともに使用されます。統一性のために、task_group クラスでも task_handle と同じ引数を使用できます。
template<typename Func> class task_handle { public: task_handle( const Func& ); task_handle( Func&& ); // C++11 以降でサポート void operator()() const; };