RLMSyncSessionState
enum RLMSyncSessionState : NSUInteger {}
The current state of a sync session object.
-
The sync session is valid, but has not yet been bound to the Realm Object Server.
Declaration
Objective-C
RLMSyncSessionStateUnboundSwift
case unbound = 0 -
The sync session is bound to the Realm Object Server and communicating with it.
Declaration
Objective-C
RLMSyncSessionStateActiveSwift
case active = 1 -
The sync session is logged out, but could be rebound to the Realm Object Server.
Declaration
Objective-C
RLMSyncSessionStateLoggedOutSwift
case loggedOut = 2 -
The sync session encountered an error and is invalid; it should be discarded.
Declaration
Objective-C
RLMSyncSessionStateInvalidSwift
case invalid = 3
View on GitHub
Install in Dash
RLMSyncSessionState Enum Reference