Navigation
API > API/Developer > API/Developer/Localization > API/Developer/Localization/FLocTextHelper
Description
Enumerate in parallel all the source texts in the manifest, optionally skipping those entries from a dependent manifest. InCallback shall be called from multiple threads so it is the calllers responsibility to guarantee thread safety inside the callback's scope.
| Name | EnumerateSourceTextsParallel |
| Type | function |
| Header File | /Engine/Source/Developer/Localization/Public/LocTextHelper.h |
| Include Path | #include "LocTextHelper.h" |
| Source | /Engine/Source/Developer/Localization/Private/LocTextHelper.cpp |
void EnumerateSourceTextsParallel
(
const FEnumerateSourceTextsFuncPtr & InCallback,
const bool InCheckDependencies
) const
Parameters
| Name | Remarks |
|---|---|
| InCallback | Function to call for each source text. Returns true to continue enumeration. |
| InCheckDependencies | True to skip entries that can be found in a dependent manifest, false to include them. |