Type Definitions
The following type definitions are available globally.
-
A block type used to report an error
Declaration
Objective-C
typedef void (^RLMAPIKeyAuthOptionalErrorBlock)(NSError *_Nullable)Swift
typealias RLMAPIKeyAuthOptionalErrorBlock = @Sendable ((any Error)?) -> Void -
A block type used to return an
RLMUserAPIKeyon success, or anNSErroron failureDeclaration
Objective-C
typedef void (^RLMOptionalUserAPIKeyBlock)(RLMUserAPIKey *_Nullable, NSError *_Nullable)Swift
typealias RLMOptionalUserAPIKeyBlock = @Sendable (RLMUserAPIKey?, (any Error)?) -> Void -
A block type used to return an array of
RLMUserAPIKeyon success, or anNSErroron failureDeclaration
Objective-C
typedef void (^RLMUserAPIKeysBlock)(NSArray<RLMUserAPIKey *> *_Nullable, NSError *_Nullable)Swift
typealias RLMUserAPIKeysBlock = @Sendable ([RLMUserAPIKey]?, (any Error)?) -> Void -
A block type used to report an error
Declaration
Objective-C
typedef void (^RLMOptionalErrorBlock)(NSError *_Nullable)Swift
typealias RLMOptionalErrorBlock = ((any Error)?) -> Void
-
A notification indicating that changes were made to a Realm.
Declaration
Objective-C
typedef NSString *RLMNotificationSwift
struct RLMNotification : _ObjectiveCBridgeable, Hashable, Equatable, _SwiftNewtypeWrapper, RawRepresentable, @unchecked Sendable -
A token representing an identity provider’s credentials.
Declaration
Objective-C
typedef NSString *RLMCredentialsTokenSwift
typealias RLMCredentialsToken = NSString -
A type representing the unique identifier of an Atlas App Services identity provider.
Declaration
Objective-C
typedef NSString *RLMIdentityProviderSwift
struct RLMIdentityProvider : _ObjectiveCBridgeable, Hashable, Equatable, _SwiftNewtypeWrapper, RawRepresentable, @unchecked Sendable -
A block type used to report an error
Declaration
Objective-C
typedef void (^RLMEmailPasswordAuthOptionalErrorBlock)(NSError *_Nullable)Swift
typealias RLMEmailPasswordAuthOptionalErrorBlock = @Sendable ((any Error)?) -> Void -
A callback block for
RLMObjectnotifications.If the object is deleted from the managing Realm, the block is called with
deletedset toYESand the other two arguments arenil. The block will never be called again after this.If the object is modified, the block will be called with
deletedset toNO, anilerror, and an array ofRLMPropertyChangeobjects which indicate which properties of the objects were modified.erroris alwaysniland will be removed in a future version.Declaration
Objective-C
typedef void (^RLMObjectChangeBlock)(BOOL, NSArray<RLMPropertyChange *> *_Nullable, NSError *_Nullable)Swift
typealias RLMObjectChangeBlock = (Bool, [RLMPropertyChange]?, (any Error)?) -> Void -
A block which receives a subscription set instance, that can be used to add an initial set of subscriptions which will be executed when the Realm is first opened.
Declaration
Objective-C
typedef void (^RLMFlexibleSyncInitialSubscriptionsBlock)( RLMSyncSubscriptionSet *_Nonnull)Swift
typealias RLMFlexibleSyncInitialSubscriptionsBlock = @Sendable (RLMSyncSubscriptionSet) -> Void -
A log callback function which can be set on RLMLogger.
The log function may be called from multiple threads simultaneously, and is responsible for performing its own synchronization if any is required.
Declaration
Objective-C
typedef void (^RLMLogFunction)(RLMLogLevel, NSString *_Nonnull)Swift
typealias RLMLogFunction = @Sendable (LogLevel, String) -> Void -
A block type which provides both the old and new versions of an object in the Realm. Object properties can only be accessed using keyed subscripting.
Declaration
Parameters
oldObjectThe object from the original Realm (read-only).
newObjectThe object from the migrated Realm (read-write).
-
Block which returns an array of object ids on a successful insertMany, or an error should one occur.
-
Block which returns an array of Documents on a successful find operation, or an error should one occur.
-
Block which returns a Document on a successful findOne operation, or an error should one occur.
-
Block which returns the number of Documents in a collection on a successful count operation, or an error should one occur.
Declaration
Objective-C
typedef void (^RLMMongoCountBlock)(NSInteger, NSError *_Nullable)Swift
typealias RLMMongoCountBlock = @Sendable (Int, (any Error)?) -> Void -
Block which returns an RLMUpdateResult on a successful update operation, or an error should one occur.
Declaration
Objective-C
typedef void (^RLMMongoUpdateBlock)(RLMUpdateResult *_Nullable, NSError *_Nullable)Swift
typealias RLMMongoUpdateBlock = @Sendable (RLMUpdateResult?, (any Error)?) -> Void -
Block which returns the deleted Document on a successful delete operation, or an error should one occur.
-
A block for receiving an
RLMResponsefrom theRLMNetworkTransport.Declaration
Objective-C
typedef void (^RLMNetworkTransportCompletionBlock)(RLMResponse *_Nonnull)Swift
typealias RLMNetworkTransportCompletionBlock = @Sendable (RLMResponse) -> Void -
A callback block for opening Realms asynchronously.
Returns the Realm if the open was successful, or an error otherwise.
-
The Id of the asynchronous transaction.
Declaration
Objective-C
typedef unsigned int RLMAsyncTransactionIdSwift
typealias RLMAsyncTransactionId = UInt32 -
The type of a block to run whenever the data within the Realm is modified.
Declaration
Objective-C
typedef void (^RLMNotificationBlock)(RLMNotification _Nonnull, RLMRealm *_Nonnull)Swift
typealias RLMNotificationBlock = (RLMNotification, RLMRealm) -> Void -
The type of a migration block used to migrate a Realm.
Declaration
Objective-C
typedef void (^RLMMigrationBlock)(RLMMigration *_Nonnull, uint64_t)Swift
typealias RLMMigrationBlock = @Sendable (RLMMigration, UInt64) -> VoidParameters
migrationA
RLMMigrationobject used to perform the migration. The migration object allows you to enumerate and alter any existing objects which require migration.oldSchemaVersionThe schema version of the Realm being migrated.
-
A block called when opening a Realm for the first time during the life of a process to determine if it should be compacted before being returned to the user. It is passed the total file size (data + free space) and the total bytes used by data in the file.
Return
YESto indicate that an attempt to compact the file should be made. The compaction will be skipped if another process is accessing it.Declaration
Objective-C
typedef BOOL (^RLMShouldCompactOnLaunchBlock)(NSUInteger, NSUInteger)Swift
typealias RLMShouldCompactOnLaunchBlock = @Sendable (UInt, UInt) -> Bool -
A block type used for APIs which asynchronously return a
Results.Declaration
Objective-C
typedef void (^RLMResultsCompletionBlock)(RLMResults *_Nullable, NSError *_Nullable)Swift
typealias RLMResultsCompletionBlock = (RLMResults<AnyObject>?, (any Error)?) -> Void -
A block type used to report after a client reset occurred. The
beforeFrozenargument is a frozen copy of the local state prior to client reset. Theafterargument contains the local database state after the client reset occurred.Declaration
-
A log callback function which can be set on RLMSyncManager.
The log function may be called from multiple threads simultaneously, and is responsible for performing its own synchronization if any is required.
Declaration
Objective-C
typedef void (^RLMSyncLogFunction)(RLMSyncLogLevel, NSString *_Nonnull)Swift
typealias RLMSyncLogFunction = @Sendable (RLMSyncLogLevel, String) -> Void -
A block type representing a block which can be used to report a sync-related error to the application. If the error pertains to a specific session, that session will also be passed into the block.
Declaration
Objective-C
typedef void (^RLMSyncErrorReportingBlock)(NSError *_Nonnull, RLMSyncSession *_Nullable)Swift
typealias RLMSyncErrorReportingBlock = @Sendable (any Error, RLMSyncSession?) -> Void -
Deprecated
Use RLMSyncProgressNotificationBlock instead
The type of a progress notification block intended for reporting a session’s network activity to the user.
transferredBytesrefers to the number of bytes that have been uploaded or downloaded.transferrableBytesrefers to the total number of bytes transferred, and pending transfer.Declaration
Objective-C
typedef void (^RLMProgressNotificationBlock)(NSUInteger, NSUInteger)Swift
typealias RLMProgressNotificationBlock = (UInt, UInt) -> Void -
A struct encapsulating progress information.
See moreDeclaration
Objective-C
typedef struct RLMSyncProgress RLMSyncProgress -
The type of a progress notification block intended for reporting a session’s network activity to the user.
Declaration
Objective-C
typedef void (^RLMSyncProgressNotificationBlock)(RLMSyncProgress)Swift
typealias RLMSyncProgressNotificationBlock = (RLMSyncProgress) -> Void -
A block type used to report an error on a network request from the user.
Declaration
Objective-C
typedef void (^RLMUserOptionalErrorBlock)(NSError *_Nullable)Swift
typealias RLMUserOptionalErrorBlock = @Sendable ((any Error)?) -> Void -
A block which returns a dictionary should there be any custom data set for a user
Declaration
Objective-C
typedef void (^RLMUserCustomDataBlock)(NSDictionary *_Nullable, NSError *_Nullable)Swift
typealias RLMUserCustomDataBlock = @Sendable ([AnyHashable : Any]?, (any Error)?) -> Void
View on GitHub
Install in Dash
Type Definitions Reference