Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore > API/Plugins/ConcertSyncCore/FConcertDataStore
Defines how the store updates an existing value.
| Name | EUpdatePolicy |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/ConcertDataStore.h |
| Include Path | #include "ConcertDataStore.h" |
Syntax
enum EUpdatePolicy
{
Overwrite,
Replace,
}
Values
| Name | Remarks |
|---|---|
| Overwrite | The existing value pointed by the shared pointer is overwritten, instantaneously updating all returned values still held by the client. |
| Replace | The existing shared pointer is replaced with a new shared pointer, leaving values returned to the client (shared pointers) unchanged. |