Navigation
API > API/Plugins > API/Plugins/USDUtilities
| |
|
| Name |
ESchemaTranslationLaunchPolicy |
| Type |
enum |
| Header File |
/Engine/Plugins/Runtime/USDCore/Source/USDUtilities/Public/Objects/USDSchemaTranslator.h |
| Include Path |
#include "Objects/USDSchemaTranslator.h" |
Syntax
enum ESchemaTranslationLaunchPolicy
{
ExclusiveSync,
Sync,
Async,
}
Values
| Name |
Remarks |
| ExclusiveSync |
Task will run on main thread, with the guarantee that no other tasks are being run concurrently to it. |
| Sync |
Task will run on main thread, while other tasks may be running concurrently |
| Async |
Task may run on another thread, while other tasks may be running concurrently |