CONCURRENCY_CONFLICT_TYPE Enumeration

Represents the types of conflicts that can occur because of changes that occurred to the same item at local and remote replicas.


typedef enum
{
    CCT_UPDATE_UPDATE = 0,
    CCT_LOCAL_UPDATE_REMOTE_DELETE = 1,
    CCT_LOCAL_DELETE_REMOTE_UPDATE = 2,
} CONCURRENCY_CONFLICT_TYPE;

CCT_UPDATE_UPDATE

The item was updated locally and remotely at the same time.

CCT_LOCAL_UPDATE_REMOTE_DELETE

The item was updated locally and deleted remotely.

CCT_LOCAL_DELETE_REMOTE_UPDATE

The item was deleted locally and updated remotely.

Header: FullEnumerationProvider.h

Show: