![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <CoreAsyncTaskNotificationImpl.h>
Inheritance diagram for IAsyncTaskNotificationImpl:Public Member Functions | |
| virtual | ~IAsyncTaskNotificationImpl ()=default |
| virtual void | Initialize (const FAsyncTaskNotificationConfig &InConfig)=0 |
| virtual void | SetTitleText (const FText &InTitleText, const bool bClearProgressText)=0 |
| virtual void | SetProgressText (const FText &InProgressText)=0 |
| virtual void | SetPromptText (const FText &InPromptText)=0 |
| virtual void | SetHyperlink (const FSimpleDelegate &InHyperlink, const FText &InHyperlinkText)=0 |
| virtual void | SetComplete (const bool bSuccess)=0 |
| virtual void | SetComplete (const FText &InTitleText, const FText &InProgressText, const bool bSuccess)=0 |
| virtual void | SetNotificationState (const FAsyncNotificationStateData &InState)=0 |
| virtual void | SetCanCancel (const TAttribute< bool > &InCanCancel)=0 |
| virtual void | SetKeepOpenOnSuccess (const TAttribute< bool > &InKeepOpenOnSuccess)=0 |
| virtual void | SetKeepOpenOnFailure (const TAttribute< bool > &InKeepOpenOnFailure)=0 |
| virtual EAsyncTaskNotificationPromptAction | GetPromptAction () const =0 |
Implementation interface of notifications for an on-going asynchronous task.
|
virtualdefault |
|
pure virtual |
Return the notification prompt action. The action resets to None when the notification state changes.
Implemented in FCoreAsyncTaskNotificationImpl, and FSlateAsyncTaskNotificationImpl.
|
pure virtual |
Initialize this notification based on the given config.
Implemented in FCoreAsyncTaskNotificationImpl, and FSlateAsyncTaskNotificationImpl.
|
pure virtual |
Set whether this task be canceled.
Implemented in FCoreAsyncTaskNotificationImpl, and FSlateAsyncTaskNotificationImpl.
Set the task as complete.
Implemented in FCoreAsyncTaskNotificationImpl.
|
pure virtual |
Update the text and set the task as complete.
Implemented in FCoreAsyncTaskNotificationImpl.
|
pure virtual |
Set the hyperlink text of this notification.
Implemented in FCoreAsyncTaskNotificationImpl.
|
pure virtual |
Set whether to keep this notification open on failure.
Implemented in FCoreAsyncTaskNotificationImpl, and FSlateAsyncTaskNotificationImpl.
|
pure virtual |
Set whether to keep this notification open on success.
Implemented in FCoreAsyncTaskNotificationImpl, and FSlateAsyncTaskNotificationImpl.
|
pure virtual |
Set the task notification state. provides finer control than SetComplete
Implemented in FCoreAsyncTaskNotificationImpl.
|
pure virtual |
Set the progress text of this notification.
Implemented in FCoreAsyncTaskNotificationImpl.
Set the prompt text of this notification.
Implemented in FCoreAsyncTaskNotificationImpl.
|
pure virtual |
Set the title text of this notification.
Implemented in FCoreAsyncTaskNotificationImpl.