UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
IAsyncTask.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6
11{
14
17
19 Failed,
20
22 Pending,
23
25 Running,
26};
27
28
37{
38public:
39
47 virtual void Cancel() = 0;
48
55
56public:
57
59 virtual ~IAsyncTask() { }
60};
EAsyncTaskState
Definition IAsyncTask.h:11
Definition IAsyncTask.h:37
virtual void Cancel()=0
virtual EAsyncTaskState GetTaskState()=0
virtual ~IAsyncTask()
Definition IAsyncTask.h:59