ConcurrencyControl Enumeration |
Specifies the way that the library should behave when it encounters a situation
when the database has been altered since the last read (e.g. a local operation read
a document, modified it, and while it was being modified a replication committed a
change to the document, and then the local document was saved after that)
Namespace:
Couchbase.Lite
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.1.0-b0232
Syntax public enum ConcurrencyControl
Members
| Member name | Value | Description |
---|
| LastWriteWins | 0 |
Disregard the version that was received out of band and
force this version to be current
|
| FailOnConflict | 1 |
Throw an exception to indicate the situation so that the latest
data can be read again from the local database
|
See Also