Navigation
API > API/Developer > API/Developer/LauncherServices
Enumerates launcher task status types.
| Name | ELauncherTaskStatus::Type |
| Type | enum |
| Header File | /Engine/Source/Developer/LauncherServices/Public/ILauncherTask.h |
| Include Path | #include "ILauncherTask.h" |
Syntax
namespace ELauncherTaskStatus
{
enum Type
{
Busy,
Canceled,
Completed,
Failed,
Pending,
}
}
Values
| Name | Remarks |
|---|---|
| Busy | The task is currently busy executing. |
| Canceled | The task has been canceled. |
| Completed | The task completed successfully. |
| Failed | The task failed. |
| Pending | The task is waiting to execute. |