Skip to content

Latest commit

 

History

History
63 lines (35 loc) · 1.49 KB

SyncConflictStrategy.md

File metadata and controls

63 lines (35 loc) · 1.49 KB

collection-sync / Exports / SyncConflictStrategy

Enumeration: SyncConflictStrategy

Table of contents

Enumeration members

Enumeration members

Force

Force = "Force"

Force synchronizing by using the data from the source collection. Fetch will use the parent's data to update local data. Post will use data from the local collection and force it into the parent.

Defined in

types/SyncTypes.ts:8


Ignore

Ignore = "Ignore"

Ignore conflicting items (do nothing about them).

Defined in

types/SyncTypes.ts:14


RaiseError

RaiseError = "RaiseError"

Abort sync if there's a conflicting item in the item set to sync (i.e. sync all or none).

Defined in

types/SyncTypes.ts:11


SyncUntilConflict

SyncUntilConflict = "SyncUntilConflict"

Syncs the items in order until there's a conflict.

Defined in

types/SyncTypes.ts:17