DittoUpdateResult
public enum DittoUpdateResult
Describes the result of an update operation performed on a DittoMutableDocument
.
- set: Describes the
set
update that was performed. - removed: Describes the
remove
update that was performed. - replacedWithCounter: Describes the
replaceWithCounter
update that was performed. - incremented: Describes the
increment
update that was performed. - pushed: Describes the
push
update that was performed. - popped: Describes the
pop
update that was performed. - inserted: Describes the
insert
update that was performed.
-
Undocumented
Declaration
Swift
case set(docID: DittoDocumentID, path: String, value: Any?)
-
Undocumented
Declaration
Swift
case removed(docID: DittoDocumentID, path: String)
-
Undocumented
Declaration
Swift
case replacedWithCounter(docID: DittoDocumentID, path: String)
-
Undocumented
Declaration
Swift
case incremented(docID: DittoDocumentID, path: String, amount: Double)
-
Undocumented
Declaration
Swift
case pushed(docID: DittoDocumentID, path: String, value: Any?)
-
Undocumented
Declaration
Swift
case popped(docID: DittoDocumentID, path: String, value: Any?)
-
Undocumented
Declaration
Swift
case inserted(docID: DittoDocumentID, path: String, value: Any?)