DittoWriteTransactionResult
public enum DittoWriteTransactionResult
Describes one part of the result of a write transaction.
- inserted: Describes a document that has been inserted, referencing its ID and the collection it was inserted into.
- updated: Describes a document that has been updated, referencing its ID and the collection it belongs to.
- evicted: Describes a document that has been evicted, referencing its ID and the collection it belonged to.
- removed: Describes a document that has been removed, referencing its ID and the collection it belonged to.
-
Undocumented
Declaration
Swift
case inserted(id: DittoDocumentID, collection: String)
-
Undocumented
Declaration
Swift
case updated(id: DittoDocumentID, collection: String)
-
Undocumented
Declaration
Swift
case evicted(id: DittoDocumentID, collection: String)
-
Undocumented
Declaration
Swift
case removed(id: DittoDocumentID, collection: String)