Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Misc
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Misc/AsyncTaskNotification.h |
| Include | #include "Misc/AsyncTaskNotification.h" |
Syntax
struct FAsyncTaskNotificationConfig
Remarks
Configuration data for initializing an asynchronous task notification.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TAttribute< bool > | bCanCancel | Can this task be canceled? Will show a cancel button for in-progress tasks (attribute queried from the game thread) | |
| bool | bIsHeadless | Should this notification be "headless"? (ie, not display any UI) | |
| TAttribute< bool > | bKeepOpenOnFailure | Keep this notification open on failure? Will show an close button (attribute queried from the game thread) | |
| TAttribute< bool > | bKeepOpenOnSuccess | Keep this notification open on success? Will show a close button (attribute queried from the game thread) | |
| float | ExpireDuration | The duration before a fadeout for the notification | |
| float | FadeInDuration | The fade in duration of the notification | |
| float | FadeOutDuration | The fade out duration of the notification | |
| const FSlateBrush * | Icon | The icon image to display next to the text, or null to use the default icon | |
| const FLogCategoryBase * | LogCategory | Category this task should log its notifications under, or null to skip logging | |
| FText | ProgressText | The progress text displayed in the notification (if any) | |
| FText | TitleText | The title text displayed in the notification |