Structures
The following structures are available globally.
-
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
-
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 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
-
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
-
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
-
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
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