EmbeddedObject
extension EmbeddedObject: ObservableObject
extension EmbeddedObject: _RealmCollectionValueInsideOptional
extension EmbeddedObject: ThreadConfined
extension EmbeddedObject: SchemaDiscoverable, _PersistableInsideOptional, _DefaultConstructible
-
A publisher that emits Void each time the object changes.
Despite the name, this actually emits after the embedded object has changed.
Declaration
Swift
public var objectWillChange: RealmPublishers.WillChange<EmbeddedObject> { get }
-
Creates an unmanaged instance of a Realm object.
The
valueargument is used to populate the object. It can be a key-value coding compliant object, an array or dictionary returned from the methods inNSJSONSerialization, or anArraycontaining one element for each managed property. An exception will be thrown if any required properties are not present and those properties were not defined with default values.When passing in an
Arrayas thevalueargument, all properties must be present, valid and in the same order as the properties defined in the model.An unmanaged embedded object can be added to a Realm by assigning it to a property of a managed object or by adding it to a managed List.
Declaration
Swift
public convenience init(value: Any)Parameters
valueThe value used to populate the object.
-
The Realm which manages the object, or
nilif the object is unmanaged.Declaration
Swift
public var realm: Realm? { get } -
The object schema which lists the managed properties for the object.
Declaration
Swift
public var objectSchema: ObjectSchema { get } -
Indicates if the object can no longer be accessed because it is now invalid.
An object can no longer be accessed if the object has been deleted from the Realm that manages it, or if
invalidate()is called on that Realm.Declaration
Swift
public override final var isInvalidated: Bool { get } -
A human-readable description of the object.
Declaration
Swift
open override var description: String { get }
-
Override this method to specify the names of properties to ignore. These properties will not be managed by the Realm that manages the object.
Warning
This function is only applicable to legacy property declarations using@objc. When using@Persisted, any properties not marked with@Persistedare automatically ignored.Declaration
Swift
@objc open class func ignoredProperties() -> [String]Return Value
An array of property names to ignore.
-
Override this method to specify a map of public-private property names. This will set a different persisted property name on the Realm, and allows using the public name for any operation with the property. (Ex: Queries, Sorting, …). This very helpful if you need to map property names from your
Device SyncJSON schema to local property names.class Person: EmbeddedObject { @Persisted var firstName: String @Persisted var birthDate: Date @Persisted var age: Int override class public func propertiesMapping() -> [String : String] { ["firstName": "first_name", "birthDate": "birth_date"] } }Note
Only property that have a different column name have to be added to the properties mapping dictionary.
Declaration
Swift
open override class func propertiesMapping() -> [String : String]Return Value
A dictionary of public-private property names.
-
Returns or sets the value of the property with the given name.
Declaration
Swift
@objc open subscript(key: String) -> Any? { get set }
-
Registers a block to be called each time the object changes.
The block will be asynchronously called after each write transaction which deletes the object or modifies any of the managed properties of the object, including self-assignments that set a property to its existing value.
For write transactions performed on different threads or in different processes, the block will be called when the managing Realm is (auto)refreshed to a version including the changes, while for local write transactions it will be called at some point in the future after the write transaction is committed.
Notifications are delivered via the standard run loop, and so can’t be delivered while the run loop is blocked by other activity. When notifications can’t be delivered instantly, multiple notifications may be coalesced into a single notification.
Unlike with
ListandResults, there is no “initial” callback made after you add a new notification block.Only objects which are managed by a Realm can be observed in this way. You must retain the returned token for as long as you want updates to be sent to the block. To stop receiving updates, call
invalidate()on the token.It is safe to capture a strong reference to the observed object within the callback block. There is no retain cycle due to that the callback is retained by the returned token and not by the object itself.
Warning
This method cannot be called during a write transaction, or when the containing Realm is read-only.Declaration
Swift
public func observe<T: RLMObjectBase>(on queue: DispatchQueue? = nil, _ block: @escaping (ObjectChange<T>) -> Void) -> NotificationTokenParameters
queueThe serial dispatch queue to receive notification on. If
nil, notifications are delivered to the current thread.blockThe block to call with information about changes to the object.
Return Value
A token which must be held for as long as you want updates to be delivered.
-
Returns whether two Realm objects are the same.
Objects are considered the same if and only if they are both managed by the same Realm and point to the same underlying object in the database.
Note
Equality comparison is implemented by
isEqual(_:). If the object type is defined with a primary key,isEqual(_:)behaves identically to this method. If the object type is not defined with a primary key,isEqual(_:)uses theNSObjectbehavior of comparing object identity. This method can be used to compare two objects for database equality whether or not their object type defines a primary key.Declaration
Swift
public func isSameObject(as object: EmbeddedObject?) -> BoolParameters
objectThe object to compare the receiver to.
-
Indicates if this object is frozen.
See
Object.freeze()Declaration
Swift
public var isFrozen: Bool { get } -
Returns a frozen (immutable) snapshot of this object.
The frozen copy is an immutable object which contains the same data as this object currently contains, but will not update when writes are made to the containing Realm. Unlike live objects, frozen objects can be accessed from any thread.
Warning
Holding onto a frozen object for an extended period while performing write transaction on the Realm may result in the Realm file growing to large sizes. SeeRealm.Configuration.maximumNumberOfActiveVersionsfor more information.Warning
This method can only be called on a managed object.Declaration
Swift
public func freeze() -> Self -
Returns a live (mutable) reference of this object.
This method creates a managed accessor to a live copy of the same frozen object. Will return self if called on an already live object.
Declaration
Swift
public func thaw() -> `Self`? -
Undocumented
Declaration
Swift
public typealias PersistedType = EmbeddedObject -
Undocumented
Declaration
Swift
public static var _rlmType: PropertyType { get } -
Undocumented
Declaration
Swift
public static func _rlmPopulateProperty(_ prop: RLMProperty) -
Undocumented
Declaration
Swift
public static func _rlmGetProperty(_ obj: ObjectBase, _ key: UInt16) -> Self -
Undocumented
Declaration
Swift
public static func _rlmGetPropertyOptional(_ obj: ObjectBase, _ key: UInt16) -> `Self`? -
Undocumented
Declaration
Swift
public static func _rlmSetProperty(_ obj: ObjectBase, _ key: UInt16, _ value: EmbeddedObject)
View on GitHub
Install in Dash