Files
UnrealEngineUWP/Engine/Source/Runtime/Core/Tests
andriy tylychko 81c43767ec A minimal support for task cancellation:
* 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]
2023-08-04 09:54:33 -04:00
..
2023-06-30 10:29:48 -04:00