Navigation
API > API/Plugins > API/Plugins/ConcertSyncClient
The options flags used to register a key/value handler.
| Name | EConcertDataStoreChangeNotificationOptions |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Source/ConcertSyncClient/Public/IConcertClientDataStore.h |
| Include Path | #include "IConcertClientDataStore.h" |
Syntax
enum EConcertDataStoreChangeNotificationOptions
{
None = 0,
NotifyOnInitialValue = 1 << 0,
NotifyOnTypeMismatch = 1 << 1,
}
Values
| Name | Remarks |
|---|---|
| None | No special options. |
| NotifyOnInitialValue | If the key value already exists, immediately call the handler. |
| NotifyOnTypeMismatch | If the register handler declares a value type that doesn't match the stored value type, still call the observer, but the reported value (TOptional<>) will not be set. |