class DittoWriteTransactionPendingIDSpecificOperation
These objects are returned when using findByID functionality on DittoScopedWriteTransactions. You can use them to perform updates on a document and remove or evict a document.
collectionName |
the name of the collection that the operation will be performed on. val collectionName: String |
dittoHandle |
val dittoHandle: SWIGTYPE_p_Ditto |
docID |
the ID of the document that the operation will be performed on. val docID: String |
objectMapper |
val objectMapper: ObjectMapper |
objectReader |
val objectReader: ObjectReader |
writeTxn |
val writeTxn: SWIGTYPE_p_CWriteTransaction |
evict |
Evict the document with the matching ID. fun evict(): Boolean |
remove |
Remove the document with the matching ID. fun remove(): Boolean |
update |
Update the document with the matching ID. fun update(closure: (DittoMutableDocument?) -> Unit): List<DittoUpdateResult> fun update(updater: DittoSingleMutableDocumentUpdater): List<DittoUpdateResult> |