RealmUUIDKSerializer
KSerializer implementation for RealmUUID. Serialized as a BsonBinary with subtype BsonBinarySubType.UUID_STANDARD, and deserialized as an unmanaged RealmUUID.
The serializer must be registered per property:
class Example : RealmObject {
@Serializable(RealmUUIDKSerializer::class)
var myUUID: RealmUUID = RealmUUID.create()
}
Content copied to clipboard
or per file:
@file:UseSerializers(RealmUUIDKSerializer::class)
class Example : RealmObject {
var myUUID: RealmUUID = RealmUUID.create()
}
Content copied to clipboard
Adding the following code snippet to a Kotlin file would conveniently register any field using a Realm datatype to its correspondent serializer:
@file:UseSerializers(
RealmListKSerializer::class,
RealmSetKSerializer::class,
RealmAnyKSerializer::class,
RealmInstantKSerializer::class,
MutableRealmIntKSerializer::class,
RealmUUIDKSerializer::class
)
Content copied to clipboard
Serializers for all Realm data types can be found in io.realm.kotlin.serializers.