我想在不同類型的任務上使用PPL「when_all」。然後給該任務添加一個「然後」調用。 但是,when_all返回帶有向量的任務,所以所有元素必須是相同的類型。那麼,我該如何做到這一點? 這是我想出了,但感覺就像一個黑客攻擊的一位: //3 different types:
int out1;
float out2;
char out3;
//Unfortunately I cant
我試圖通過使用其Scheduler類來管理PPL本地線程的數量,這裏是我的代碼: for (int i = 0; i < 2000; i ++)
{
// configure concurrency count 16 to 32.
concurrency::SchedulerPolicy policy = concurrency::SchedulerPolicy(2, con
所以我有功能,看起來像這樣 task<shared_ptr<myObjectsResult>> task1 = create_task([this,token, stream]
{
// Here I have code that is working, but I would like to refactor it
// maybe even make it go afte