RLMSyncManagementObjectStatus
enum RLMSyncManagementObjectStatus : NSUInteger {}
An enum representing the different states a sync management object can take.
-
The management object has not yet been processed by the object server.
Declaration
Objective-C
RLMSyncManagementObjectStatusNotProcessed
Swift
case notProcessed = 0
-
The operations encoded in the management object have been successfully performed by the object server.
Declaration
Objective-C
RLMSyncManagementObjectStatusSuccess
Swift
case success = 1
-
The operations encoded in the management object were not successfully performed by the object server.
Refer to the
statusCode
andstatusMessage
properties for more details about the error.Declaration
Objective-C
RLMSyncManagementObjectStatusError
Swift
case error = 2