Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore
References
| Module | ConcertSyncCore |
| Header | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/ConcertDataStoreMessages.h |
| Include | #include "ConcertDataStoreMessages.h" |
Syntax
class FConcertDataStoreResult
Remarks
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.
Variables
| Type | Name | Description | |
|---|---|---|---|
| EConcertDataStoreResultCode | Code | The operation result code. | |
| FConcertDataStoreValueConstPtr | Value | The value returned to the caller unless an error occurred. |
Constructors
| Type | Name | Description | |
|---|---|---|---|
| Constructs a result containing the EConcertDataStoreResultCode::UnexpectedError code and no value. | |||
FConcertDataStoreResult
(
EConcertDataStoreResultCode InErrorCode |
Construct a result containing the specified error code and no value. | ||
FConcertDataStoreResult
(
EConcertDataStoreResultCode InCode, |
Construct a result containing the specified code (added, fetched, exchanged) and its corresponding value. |