UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
RuntimeAssetCacheBPHooks.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "HAL/Platform.h"
9#include "UObject/NameTypes.h"
13
14#include "RuntimeAssetCacheBPHooks.generated.h"
15
19class UObject;
20struct FFrame;
21
22UCLASS()
24{
26public:
27
28 UFUNCTION(BlueprintCallable, Category = RuntimeAssetCache)
29 static FVoidPtrParam GetSynchronous(TScriptInterface<IRuntimeAssetCacheBuilder> CacheBuilder);
30
31 UFUNCTION(BlueprintCallable, Category = RuntimeAssetCache)
32 static int32 GetAsynchronous(TScriptInterface<IRuntimeAssetCacheBuilder> CacheBuilder, const FOnRuntimeAssetCacheAsyncComplete& CompletionDelegate);
33
34 UFUNCTION(BlueprintCallable, Category = RuntimeAssetCache)
35 static int32 GetCacheSize(FName Bucket);
36
37 UFUNCTION(BlueprintCallable, Category = RuntimeAssetCache)
38 static bool ClearCache(FName Bucket);
39
40 UFUNCTION(BlueprintCallable, Category = RuntimeAssetCache)
41 static void WaitAsynchronousCompletion(int32 Handle);
42
43 UFUNCTION(BlueprintCallable, Category = RuntimeAssetCache)
44 static FVoidPtrParam GetAsynchronousResults(int32 Handle);
45
46 UFUNCTION(BlueprintCallable, Category = RuntimeAssetCache)
47 static bool PollAsynchronousCompletion(int32 Handle);
48};
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
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UFUNCTION(...)
Definition ObjectMacros.h:745
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition NameTypes.h:617
Definition RuntimeAssetCachePluginInterface.h:25
Definition RuntimeAssetCache.Build.cs:7
Definition ScriptInterface.h:139
Definition BlueprintFunctionLibrary.h:16
Definition Object.h:95
Definition RuntimeAssetCacheBPHooks.h:24
Definition Stack.h:114
Definition RuntimeAssetCacheInterface.h:23