Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore
Contains the result of a Concert data store operation. This class, as opposed to FConcertDataStore_Response, contains a shared pointer on the value to manage the lifetime of a value in the multi-versions client cache.
| Name | FConcertDataStoreResult |
| Type | class |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/ConcertDataStoreMessages.h |
| Include Path | #include "ConcertDataStoreMessages.h" |
Syntax
class FConcertDataStoreResult
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Constructs a result containing the EConcertDataStoreResultCode::UnexpectedError code and no value. | ConcertDataStoreMessages.h | ||
FConcertDataStoreResult
(
EConcertDataStoreResultCode InErrorCode |
Construct a result containing the specified error code and no value. | ConcertDataStoreMessages.h | |
FConcertDataStoreResult
(
EConcertDataStoreResultCode InCode, |
Construct a result containing the specified code (added, fetched, exchanged) and its corresponding value. | ConcertDataStoreMessages.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Code | EConcertDataStoreResultCode | The operation result code. | ConcertDataStoreMessages.h | |
| Value | FConcertDataStoreValueConstPtr | The value returned to the caller unless an error occurred. | ConcertDataStoreMessages.h |