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.

Syntax

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

Members

  • 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.

Requirements

Header: FullEnumerationProvider.h

See Also

Concepts

Sync Framework Simple Provider Components