Navigation
API > API/Runtime > API/Runtime/Core
Implementation interface of notifications for an on-going asynchronous task.
| Name | IAsyncTaskNotificationImpl |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CoreAsyncTaskNotificationImpl.h |
| Include Path | #include "Misc/CoreAsyncTaskNotificationImpl.h" |
Syntax
class IAsyncTaskNotificationImpl
Derived Classes
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual ~IAsyncTaskNotificationImpl() |
Misc/CoreAsyncTaskNotificationImpl.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Return the notification prompt action. | Misc/CoreAsyncTaskNotificationImpl.h | ||
void Initialize
(
const FAsyncTaskNotificationConfig& InConfig |
Initialize this notification based on the given config. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetCanCancel
(
const TAttribute< bool >& InCanCancel |
Set whether this task be canceled. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetComplete
(
const bool bSuccess |
Set the task as complete. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetComplete
(
const FText& InTitleText, |
Update the text and set the task as complete. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetHyperlink
(
const FSimpleDelegate& InHyperlink, |
Set the hyperlink text of this notification. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetKeepOpenOnFailure
(
const TAttribute< bool >& InKeepOpenOnFailure |
Set whether to keep this notification open on failure. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetKeepOpenOnSuccess
(
const TAttribute< bool >& InKeepOpenOnSuccess |
Set whether to keep this notification open on success. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetNotificationState
(
const FAsyncNotificationStateData& InState |
Set the task notification state. provides finer control than SetComplete | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetProgressText
(
const FText& InProgressText |
Set the progress text of this notification. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetPromptText
(
const FText& InPromptText |
Set the prompt text of this notification. | Misc/CoreAsyncTaskNotificationImpl.h | |
void SetTitleText
(
const FText& InTitleText, |
Set the title text of this notification. | Misc/CoreAsyncTaskNotificationImpl.h |