| 122 | } |
| 123 | |
| 124 | void FAsyncHandle::End(const bool bIsCancellation) |
| 125 | { |
| 126 | if (const TSharedPtr<FAsyncMultiHandle> PinnedRoot = Root.Pin()) { PinnedRoot->IncrementCompletedTasks(); } |
| 127 | if (const TSharedPtr<FAsyncMultiHandle> PinnedParent = ParentHandle.Pin()) { PinnedParent->IncrementCompletedTasks(); } |
| 128 | } |
| 129 | |
| 130 | bool FAsyncHandle::CompareAndSetState(EAsyncHandleState& ExpectedState, EAsyncHandleState NewState) |
| 131 | { |
nothing calls this directly
no test coverage detected