Structures
The following structures are available globally.
-
This struct enables sequence-style enumeration for RLMObjects in Swift via
See moreRLMCollection.makeIterator
Declaration
Swift
public struct RLMCollectionIterator : IteratorProtocol
-
This struct enables sequence-style enumeration for RLMDictionary in Swift via
See moreRLMDictionary.makeIterator
Declaration
Swift
public struct RLMDictionaryIterator : IteratorProtocol
-
A
Realm
instance (also referred to as “a Realm”) represents a Realm database.Realms can either be stored on disk (see
init(path:)
) or in memory (seeConfiguration
).Realm
instances are cached internally, and constructing equivalentRealm
objects (for example, by using the same path or identifier) produces limited overhead.If you specifically want to ensure a
Realm
instance is destroyed (for example, if you wish to open a Realm, check some property, and then possibly delete the Realm file and re-open it), place the code which uses the Realm within anautoreleasepool {}
and ensure you have no other strong references to it.Warning
warning Non-frozenRLMRealm
instances are thread-confined and cannot be shared across threads or dispatch queues. Trying to do so will cause an exception to be thrown. You must obtain an instance ofRLMRealm
on each thread or queue you want to interact with the Realm on. Realms can be confined to a dispatch queue rather than the thread they are opened on by explicitly passing in the queue when obtaining theRLMRealm
instance. If this is not done, trying to use the same instance in multiple blocks dispatch to the same queue may fail as queues are not always run on the same thread.Declaration
Swift
@frozen public struct Realm
extension Realm: Equatable
-
LinkingObjects
is an auto-updating container type. It represents zero or more objects that are linked to its owning model object through a property relationship.LinkingObjects
can be queried with the same predicates asList<Element>
andResults<Element>
.LinkingObjects
always reflects the current state of the Realm on the current thread, including during write transactions on the current thread. The one exception to this is when usingfor...in
enumeration, which will always enumerate over the linking objects that were present when the enumeration is begun, even if some of them are deleted or modified to no longer link to the target object during the enumeration.
See moreLinkingObjects
can only be used as a property onObject
models. Properties of this type must be declared aslet
and cannot bedynamic
.Declaration
Swift
@frozen public struct LinkingObjects<Element> where Element : ObjectBase, Element : RealmCollectionValue
extension LinkingObjects: RealmSubscribable
extension LinkingObjects: RealmCollection
extension LinkingObjects: LinkingObjectsProtocol
-
Results
is an auto-updating container type in Realm returned from object queries.Results
can be queried with the same predicates asList<Element>
, and you can chain queries to further filter query results.Results
always reflect the current state of the Realm on the current thread, including during write transactions on the current thread. The one exception to this is when usingfor...in
enumeration, which will always enumerate over the objects which matched the query when the enumeration is begun, even if some of them are deleted or modified to be excluded by the filter during the enumeration.Results
are lazily evaluated the first time they are accessed; they only run queries when the result of the query is requested. This means that chaining several temporaryResults
to sort and filter your data does not perform any unnecessary work processing the intermediate state.Once the results have been evaluated or a notification block has been added, the results are eagerly kept up-to-date, with the work done to keep them up-to-date done on a background thread whenever possible.
Results instances cannot be directly instantiated.
See moreDeclaration
Swift
@frozen public struct Results<Element> : Equatable where Element : RealmCollectionValue
extension Results: RealmSubscribable
extension Results: RealmCollection
extension Results: Encodable where Element: Encodable
-
A type-erased
RealmCollection
.Instances of
See moreRealmCollection
forward operations to an opaque underlying collection having the sameElement
type.Declaration
Swift
public struct AnyRealmCollection<Element> : RealmCollection, UntypedCollection where Element : RealmCollectionValue
extension AnyRealmCollection: RealmSubscribable
-
A subscription which wraps a Realm notification.
See moreDeclaration
Swift
@available(macOS 10.15, watchOS 6.0, iOS 13.0, iOSApplicationExtension 13.0, macOSApplicationExtension 10.15, tvOS 13.0, *) @frozen public struct ObservationSubscription : Subscription
-
A subscription which wraps a Realm AsyncOpenTask.
See moreDeclaration
Swift
@available(macOS 10.15, watchOS 6.0, iOS 13.0, iOSApplicationExtension 13.0, macOSApplicationExtension 10.15, tvOS 13.0, *) @frozen public struct AsyncOpenSubscription : Subscription
-
Container type which holds the offset of the element in the Map.
See moreDeclaration
Swift
public struct MapIndex
-
Container for holding a single key-value entry in a Map. This is used where a tuple cannot be expressed as a generic argument.
See moreDeclaration
Swift
public struct SingleMapEntry<Key, Value> : _RealmMapValue, Hashable where Key : _MapKey, Value : RealmCollectionValue
-
Migration
instances encapsulate information intended to facilitate a schema migration.A
See moreMigration
instance is passed into a user-definedMigrationBlock
block when updating the version of a Realm. This instance provides access to the old and new database schemas, the objects in the Realm, and provides functionality for modifying the Realm during the migration.Declaration
Swift
@frozen public struct Migration
-
Declaration
Swift
@frozen public struct PropertyChange
-
This class represents Realm model object schemas.
When using Realm,
ObjectSchema
instances allow performing migrations and introspecting the database’s schema.Object schemas map to tables in the core database.
See moreDeclaration
Swift
@frozen public struct ObjectSchema : CustomStringConvertible
extension ObjectSchema: Equatable
-
@Persisted is used to declare properties on Object subclasses which should be managed by Realm.
Example of usage:
class MyModel: Object { // A basic property declaration. A property with no // default value supplied will default to `nil` for // Optional types, zero for numeric types, false for Bool, // an empty string/data, and a new random value for UUID // and ObjectID. @Persisted var basicIntProperty: Int // Custom default values can be specified with the // standard Swift syntax @Persisted var intWithCustomDefault: Int = 5 // Properties can be indexed by passing `indexed: true` // to the initializer. @Persisted(indexed: true) var indexedString: String // Properties can set as the class's primary key by // passing `primaryKey: true` to the initializer @Persisted(primaryKey: true) var _id: ObjectId // List and set properties should always be declared // with `: List` rather than `= List()` @Persisted var listProperty: List<Int> @Persisted var setProperty: MutableSet<MyObject> // LinkingObjects properties require setting the source // object link property name in the initializer @Persisted(originProperty: "outgoingLink") var incomingLinks: LinkingObjects<OtherModel> // Properties which are not marked with @Persisted will // be ignored entirely by Realm. var ignoredProperty = true }
Int, Bool, String, ObjectId and Date properties can be indexed by passing
indexed: true
to the initializer. Indexing a property improves the performance of equality queries on that property, at the cost of slightly worse write performance. No other operations currently use the index.A property can be set as the class’s primary key by passing
primaryKey: true
to the initializer. Compound primary keys are not supported, and setting more than one property as the primary key will throw an exception at runtime. Only Int, String, UUID and ObjectID properties can be made the primary key, and when using MongoDB Realm, the primary key must be named_id
. The primary key property can only be mutated on unmanaged objects, and mutating it on an object which has been added to a Realm will throw an exception.Properties can optionally be given a default value using the standard Swift syntax. If no default value is given, a value will be generated on first access:
nil
for all Optional types, zero for numeric types, false for Bool, an empty string/data, and a new random value for UUID and ObjectID. List and MutableSet properties should not be defined by setting them to a default value of an empty List/MutableSet. Doing so will work, but will result in worse performance when accessing objects managed by a Realm. Similarly, ObjectID properties should not be initialized toObjectID.generate()
, as doing so will result in extra ObjectIDs being generated and then discarded when reading from a Realm.If a class has at least one @Persisted property, all other properties will be ignored by Realm. This means that they will not be persisted and will not be usable in queries and other operations such as sorting and aggregates which require a managed property.
@Persisted cannot be used anywhere other than as a property on an Object or EmbeddedObject subclass and trying to use it in other places will result in runtime errors.
See moreDeclaration
Swift
@propertyWrapper public struct Persisted<Value> where Value : _Persistable
extension Persisted: Decodable where Value: Decodable
extension Persisted: Encodable where Value: Encodable
extension Persisted: OptionalCodingWrapper where Value: ExpressibleByNilLiteral
-
Property
instances represent properties managed by a Realm in the context of an object schema. Such properties may be persisted to a Realm file or computed from other data in the Realm.When using Realm, property instances allow performing migrations and introspecting the database’s schema.
Property instances map to columns in the core database.
See moreDeclaration
Swift
@frozen public struct Property : CustomStringConvertible
extension Property: Equatable
-
An iterator for a
See moreRealmCollection
instance.Declaration
Swift
@frozen public struct RLMIterator<Element> : IteratorProtocol where Element : RealmCollectionValue
-
An iterator for a
See moreRealmKeyedCollection
instance.Declaration
Swift
@frozen public struct RLMMapIterator<Element> : IteratorProtocol where Element : _RealmMapValue
-
An iterator for
See moreMap<Key, Value>
which produces(key: Key, value: Value)
pairs for each entry in the map.Declaration
Swift
@frozen public struct RLMKeyValueIterator<Key, Value> : IteratorProtocol where Key : _MapKey, Value : RealmCollectionValue
-
Schema
instances represent collections of model object schemas managed by a Realm.When using Realm,
Schema
instances allow performing migrations and introspecting the database’s schema.Schemas map to collections of tables in the core database.
See moreDeclaration
Swift
@frozen public struct Schema : CustomStringConvertible
extension Schema: Equatable
-
A
See moreSortDescriptor
stores a key path and a sort order for use withsorted(sortDescriptors:)
. It is similar toNSSortDescriptor
, but supports only the subset of functionality which can be efficiently run by Realm’s query engine.Declaration
Swift
@frozen public struct SortDescriptor
extension SortDescriptor: CustomStringConvertible
extension SortDescriptor: Equatable
extension SortDescriptor: ExpressibleByStringLiteral
-
A property wrapper type that instantiates an observable object.
Create a state realm object in a
SwiftUI/View
,SwiftUI/App
, orSwiftUI/Scene
by applying the@StateRealmObject
attribute to a property declaration and providing an initial value that conforms to the doc://com.apple.documentation/documentation/Combine/ObservableObject protocol:@StateRealmObject var model = DataModel()
SwiftUI creates a new instance of the object only once for each instance of the structure that declares the object. When published properties of the observable realm object change, SwiftUI updates the parts of any view that depend on those properties. If unmanaged, the property will be read from the object itself, otherwise, it will be read from the underlying Realm. Changes to the value will update the view asynchronously:
Text(model.title) // Updates the view any time `title` changes.
You can pass the state object into a property that has the
SwiftUI/ObservedRealmObject
attribute.Get a
SwiftUI/Binding
to one of the state object’s properties using the$
operator. Use a binding when you want to create a two-way connection to one of the object’s properties. For example, you can let aSwiftUI/Toggle
control a Boolean value calledisEnabled
stored in the model:Toggle("Enabled", isOn: $model.isEnabled)
This will write the modified
See moreisEnabled
property to themodel
object’s Realm.Declaration
Swift
@available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *) @propertyWrapper public struct StateRealmObject<T> : DynamicProperty where T : RealmSubscribable, T : ThreadConfined, T : Equatable
-
A property wrapper type that retrieves results from a Realm.
The results use the realm configuration provided by the environment value
See moreEnvironmentValues/realmConfiguration
.Declaration
Swift
@available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) @propertyWrapper public struct ObservedResults<ResultType> : DynamicProperty, BoundCollection where ResultType : RealmSwiftObject, ResultType : Identifiable
-
A property wrapper type that subscribes to an observable Realm
See moreObject
orList
and invalidates a view whenever the observable object changes.Declaration
Swift
@available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) @propertyWrapper public struct ObservedRealmObject<ObjectType> : DynamicProperty where ObjectType : ObservableObject, ObjectType : RealmSubscribable, ObjectType : ThreadConfined, ObjectType : Equatable
-
A property wrapper type that initiates a
Realm.asyncOpen()
for the current user which asynchronously open a Realm, and notifies states for the given processAdd AsyncOpen to your
SwiftUI/View
orSwiftUI/App
, after a user is already logged in, or if a user is going to be logged in@AsyncOpen(appId: "app_id", partitionValue: <partition_value>) var asyncOpen
This will immediately initiates a
Realm.asyncOpen()
operation which will perform all work needed to get the Realm to a usable state. (see Realm.asyncOpen() documentation)This property wrapper will publish states of the current
Realm.asyncOpen()
process like progress, errors and an opened realm, which can be used to update the viewstruct AsyncOpenView: View { @AsyncOpen(appId: "app_id", partitionValue: <partition_value>) var asyncOpen var body: some View { switch asyncOpen { case .notOpen: ProgressView() case .open(let realm): ListView() .environment(\.realm, realm) case .error(_): ErrorView() case .progress(let progress): ProgressView(progress) } } }
This opened
realm
can be later injected to the view as an environment value which will be used by our property wrappers to populate the view with data from the opened realm
See moreListView() .environment(\.realm, realm)
Declaration
Swift
@available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *) @propertyWrapper public struct AsyncOpen<Partition> : DynamicProperty where Partition : BSON
-
AutoOpen
will try once to asynchronously open a Realm, but in case of no internet connection will return an opened realm for the given appId and partitionValue which can be used within our view. Add AutoOpen to yourSwiftUI/View
orSwiftUI/App
, after a user is already logged in or if a user is going to be logged in@AutoOpen(appId: "app_id", partitionValue: <partition_value>, timeout: 4000) var autoOpen
This will immediately initiates a
Realm.asyncOpen()
operation which will perform all work needed to get the Realm to a usable state. (see Realm.asyncOpen() documentation)This property wrapper will publish states of the current
Realm.asyncOpen()
process like progress, errors and an opened realm, which can be used to update the viewstruct AutoOpenView: View { @AutoOpen(appId: "app_id", partitionValue: <partition_value>) var autoOpen var body: some View { switch autoOpen { case .notOpen: ProgressView() case .open(let realm): ListView() .environment(\.realm, realm) case .error(_): ErrorView() case .progress(let progress): ProgressView(progress) } } }
This opened
realm
can be later injected to the view as an environment value which will be used by our property wrappers to populate the view with data from the opened realmListView() .environment(\.realm, realm)
This property wrapper behaves similar as
See moreAsyncOpen
, and in terms of declaration and use is completely identical, but with the difference of a offline-first approach.Declaration
Swift
@available(iOS 14.0, macOS 11.0, tvOS 14.0, watchOS 7.0, *) @propertyWrapper public struct AutoOpen<Partition> : DynamicProperty where Partition : BSON
-
A
See moreSyncConfiguration
represents configuration parameters for Realms intended to sync with MongoDB Realm.Declaration
Swift
@frozen public struct SyncConfiguration
-
Structure providing an interface to call a MongoDB Realm function with the provided name and arguments.
user.functions.sum([1, 2, 3, 4, 5]) { sum, error in guard case let .int64(value) = sum else { print(error?.localizedDescription) } assert(value == 15) }
The dynamic member name (
See moresum
in the above example) is directly associated with the function name. The first argument is theBSONArray
of arguments to be provided to the function. The second and final argument is the completion handler to call when the function call is complete. This handler is executed on a non-main globalDispatchQueue
.Declaration
Swift
@dynamicMemberLookup @frozen public struct Functions
-
An object intended to be passed between threads containing a thread-safe reference to its thread-confined object.
To resolve a thread-safe reference on a target Realm on a different thread, pass to
Realm.resolve(_:)
.Warning
A
ThreadSafeReference
object must be resolved at most once. Failing to resolve aThreadSafeReference
will result in the source version of the Realm being pinned until the reference is deallocated.Note
Prefer short-lived
ThreadSafeReference
s as the data for the version of the source Realm will be retained until all references have been resolved or deallocated.See
Declaration
Swift
@frozen public struct ThreadSafeReference<Confined> where Confined : ThreadConfined