UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
AppleAsyncTask.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
7#include "CoreTypes.h"
8#import <Foundation/Foundation.h>
9
10
11@interface FAppleAsyncTask : NSObject
12{
13@private
15 int32 bIsReadyForGameThread;
16}
17
19@property (retain) id UserData;
20
25@property (copy) bool (^GameThreadCallback)(void);
26
27
35+ (void)CreateTaskWithBlock:(bool (^)(void))Block;
36
41- (void)FinishedTask;
42
46+ (void)ProcessAsyncTasks;
47
48@end
OODEFFUNC typedef void(OODLE_CALLBACK t_fp_OodleCore_Plugin_Free)(void *ptr)
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition AppleAsyncTask.cpp:6