RLMSyncManager
@interface RLMSyncManager : NSObject
A singleton manager which serves as a central point for sync-related configuration.
-
A block which can optionally be set to report sync-related errors to your application.
Any error reported through this block will be of the
RLMSyncError
type, and marked with theRLMSyncErrorDomain
domain.Errors reported through this mechanism are fatal, with several exceptions. Please consult
RLMSyncError
for information about the types of errors that can be reported through the block, and for for suggestions on handling recoverable error codes.See
RLMSyncError
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) RLMSyncErrorReportingBlock errorHandler;
Swift
var errorHandler: RLMSyncErrorReportingBlock? { get set }
-
A reverse-DNS string uniquely identifying this application. In most cases this is automatically set by the SDK, and does not have to be explicitly configured.
Declaration
Objective-C
@property (readwrite, copy, nonatomic) NSString *_Nonnull appID;
Swift
var appID: String { get set }
-
The logging threshold which newly opened synced Realms will use. Defaults to
RLMSyncLogLevelInfo
.Logging strings are output to Apple System Logger.
Warning
This property must be set before any synced Realms are opened. Setting it after opening any synced Realm will do nothing.Declaration
Objective-C
@property (assign, readwrite, nonatomic) RLMSyncLogLevel logLevel;
Swift
var logLevel: RLMSyncLogLevel { get set }
-
The name of the HTTP header to send authorization data in when making requests to a Realm Object Server which has been configured to expect a custom authorization header.
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSString *authorizationHeaderName;
Swift
var authorizationHeaderName: String? { get set }
-
Extra HTTP headers to append to every request to a Realm Object Server.
Declaration
Objective-C
@property (readwrite, copy, nonatomic, nullable) NSDictionary<NSString *, NSString *> *customRequestHeaders;
Swift
var customRequestHeaders: [String : String]? { get set }
-
The sole instance of the singleton.
Declaration
Objective-C
+ (nonnull instancetype)sharedManager;
Swift
class func __shared() -> Self