Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore
Response codes for Concert data store operations.
| Name | EConcertDataStoreResultCode |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/ConcertDataStoreMessages.h |
| Include Path | #include "ConcertDataStoreMessages.h" |
Syntax
enum EConcertDataStoreResultCode
{
Added,
Fetched,
Exchanged,
NotFound,
TypeMismatch,
UnexpectedError,
}
Values
| Name | Remarks |
|---|---|
| Added | The key/value pair was added. |
| Fetched | The specified key value was fetched. |
| Exchanged | The specified key value was exchanged. |
| NotFound | Reading or writing a key value in the data store failed because the specified key could not be found. |
| TypeMismatch | Reading or writing a key value in the data store failed because the specified value type did not match the stored value type. |
| UnexpectedError | An unexpected error occurred. |