RLMSyncConnectionState
Objective-C
enum RLMSyncConnectionState : NSUInteger {}
Swift
enum RLMSyncConnectionState : UInt, @unchecked Sendable
同步会话连接的当前状态。 不处于“活动”状态的会话将始终处于“断开连接”状态。
-
同步会话未连接到服务器,也没有尝试连接,因为该会话处于非活动状态,或者在连接失败后正在等待重试。
声明
Objective-C
RLMSyncConnectionStateDisconnected
Swift
case disconnected = 0
-
同步会话正在尝试连接到 Atlas App Services。
声明
Objective-C
RLMSyncConnectionStateConnecting
Swift
case connecting = 1
-
同步会话当前已连接到Atlas App Services。
声明
Objective-C
RLMSyncConnectionStateConnected
Swift
case connected = 2