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