Navigation
API > API/Developer > API/Developer/LocalizationService > API/Developer/LocalizationService/ILocalizationServiceProvider
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual TSharedPtr< ILocalizationServiceState, ESPMode::ThreadSafe > GetState
(
const FLocalizationServiceTranslationIdentifier& InTranslationId, |
Helper overload for state retrieval, see GetState(). | ILocalizationServiceProvider.h | |
ELocalizationServiceOperationCommandResult::Type GetState
(
const TArray< FLocalizationServiceTranslationIdentifier >& InTranslationIds, |
Get the state of each of the passed-in files. | ILocalizationServiceProvider.h |
GetState(const FLocalizationServiceTranslationIdentifier &, ELocalizationServiceCacheUsage::Type)
Description
Helper overload for state retrieval, see GetState().
| Name | GetState |
| Type | function |
| Header File | /Engine/Source/Developer/LocalizationService/Public/ILocalizationServiceProvider.h |
| Include Path | #include "ILocalizationServiceProvider.h" |
virtual TSharedPtr < ILocalizationServiceState , ESPMode::ThreadSafe > GetState
(
const FLocalizationServiceTranslationIdentifier & InTranslationId,
ELocalizationServiceCacheUsage::Type InStateCacheUsage
)
GetState(const TArray< FLocalizationServiceTranslationIdentifier > &, TArray< TSharedRef< ILocalizationServiceState, ESPMode::ThreadSafe > > &, ELocalizationServiceCacheUsage::Type)
Description
Get the state of each of the passed-in files. State may be cached for faster queries. Note states can be NULL!
| Name | GetState |
| Type | function |
| Header File | /Engine/Source/Developer/LocalizationService/Public/ILocalizationServiceProvider.h |
| Include Path | #include "ILocalizationServiceProvider.h" |
ELocalizationServiceOperationCommandResult::Type GetState
(
const TArray < FLocalizationServiceTranslationIdentifier > & InTranslationIds,
TArray < TSharedRef < ILocalizationServiceState , ESPMode::ThreadSafe > > & OutState,
ELocalizationServiceCacheUsage::Type InStateCacheUsage
)
the result of the operation.
Parameters
| Name | Remarks |
|---|---|
| InTranslationIds | The translations to retrieve state for. |
| OutState | The states of the files. This will be empty if the operation fails. Note states can be NULL! |
| InStateCacheUsage | Whether to use the state cache or to force a (synchronous) state retrieval. |