Navigation
API > API/Developer > API/Developer/LauncherServices
Interface for launcher worker tasks.
| Name | ILauncherTask |
| Type | class |
| Header File | /Engine/Source/Developer/LauncherServices/Public/ILauncherTask.h |
| Include Path | #include "ILauncherTask.h" |
Syntax
class ILauncherTask
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Cancel() |
Cancels the task. | ILauncherTask.h | |
const FString & GetDesc() |
Gets the task's name. | ILauncherTask.h | |
FTimespan GetDuration() |
Gets the duration of time that the task has been running. | ILauncherTask.h | |
uint32 GetErrorCount() |
Gets the amount of errors that were generated during this task | ILauncherTask.h | |
const FString & GetName() |
Gets the task's name. | ILauncherTask.h | |
ELauncherTaskStatus::Type GetStatus() |
Gets the task's current status. | ILauncherTask.h | |
uint32 GetWarningCount() |
Gets the amount of warnings that were generated during this task | ILauncherTask.h | |
bool IsCancelling() |
Gets if the task is trying to cancel | ILauncherTask.h | |
bool IsFinished () |
Checks whether the task has finished execution. | ILauncherTask.h | |
FOnTaskCompletedDelegate & OnCompleted() |
Gets the completed delegate | ILauncherTask.h | |
FOnTaskStartedDelegate & OnStarted() |
Gets the stage completed delegate | ILauncherTask.h | |
int32 ReturnCode() |
Retrieves the return code from the task | ILauncherTask.h |