Navigation
API > API/Developer > API/Developer/DerivedDataCache > API/Developer/DerivedDataCache/IRequestOwner
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| End tracking for the request. | DerivedDataRequestOwner.h | ||
| End tracking of the request. | DerivedDataRequestOwner.h |
End(IRequest *)
Description
End tracking for the request.
Requests with a single completion callback should use the callback overload of End.
| Name | End |
| Type | function |
| Header File | /Engine/Source/Developer/DerivedDataCache/Public/DerivedDataRequestOwner.h |
| Include Path | #include "DerivedDataRequestOwner.h" |
TRefCountPtr< IRequest > End
(
IRequest * Request
)
The reference to the request that was held by the owner.
End(IRequest *, CallbackType &&, CallbackArgTypes &&...)
Description
End tracking of the request.
Begins a barrier, ends the request, invokes the callback, then ends the barrier. Keeps its reference to the request until the callback has returned.
| Name | End |
| Type | function |
| Header File | /Engine/Source/Developer/DerivedDataCache/Public/DerivedDataRequestOwner.h |
| Include Path | #include "DerivedDataRequestOwner.h" |
template<typename CallbackType, typename... CallbackArgTypes>
TRefCountPtr< IRequest > End
(
IRequest * Request,
CallbackType && Callback,
CallbackArgTypes &&... CallbackArgs
)
The reference to the request that was held by the owner.