Navigation
API > API/Runtime > API/Runtime/EventLoop > API/Runtime/EventLoop/TManagedStorage
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Remove
(
const FInternalHandle Handle |
Removes a resource directly using its internal handle.NOT thread safe. | EventLoop/EventLoopManagedStorage.h | |
void Remove
(
const FExternalHandle Handle, |
Requests to remove a resource.Thread safe. | EventLoop/EventLoopManagedStorage.h |
Remove(const FInternalHandle)
Description
Removes a resource directly using its internal handle.
NOT thread safe.
| Name | Remove |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/Experimental/EventLoop/Public/EventLoop/EventLoopManagedStorage.h |
| Include Path | #include "EventLoop/EventLoopManagedStorage.h" |
void Remove
(
const FInternalHandle Handle
)
Parameters
| Name | Remarks |
|---|---|
| Handle | The handle for the resource to be removed. |
Remove(const FExternalHandle, FManagedStorageOnRemoveComplete &&)
Description
Requests to remove a resource.
Thread safe.
| Name | Remove |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/Experimental/EventLoop/Public/EventLoop/EventLoopManagedStorage.h |
| Include Path | #include "EventLoop/EventLoopManagedStorage.h" |
void Remove
(
const FExternalHandle Handle,
FManagedStorageOnRemoveComplete && OnRemoveComplete
)
Parameters
| Name | Remarks |
|---|---|
| Handle | The handle for the resource to be removed. |
| OnComplete | A callback to be signaled once the resource has been destroyed. |