You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* it's user's decision and responsibility to manage cancellation token lifetime, to check cancellation token, return early, to do any required cleanup, or to do nothing at all * no way to cancel a task to skip its execution completely * waiting for a canceled task is blocking until its prerequisites are completed and the task is executed and completed, basically same as for not canceled tasks except a canceled one can quit execution early * canceling a task doesn't affect its subsequents (unless they use the same cancellation token instance) #rb danny.couture, justin.marcus, per.larsson [CL 26844767 by andriy tylychko in ue5-main branch]