Mutable Realm
Represents the writeable state of a Realm file.
To modify data in a Realm, use instances of this class. These are provided and managed automatically through either Realm.write or Realm.writeBlocking.
All objects created and/or obtained from the mutable realm in a write-transaction are bound to the thread executing the transaction. All operations on the mutable realm or on any of the objects contained in that realm must execute on the thread executing the transaction. The only exception is objects returned from Realm.write and Realm.writeBlocking, which are frozen and remain tied to the resulting version of the write-transaction.
Functions
cancelWrite
Link copied to clipboard
copyToRealm
Link copied to clipboard
delete
Link copied to clipboard
findLatest
Link copied to clipboard
getNumberOfActiveVersions
Link copied to clipboard
objects
Link copied to clipboard
abstract override fun <T : RealmObject> objects(clazz: KClass<T>): RealmResults<T>
Content copied to clipboard
Properties
configuration
Link copied to clipboard