SCSChatSessionState
enum SCSChatSessionState : NSUInteger {}
Complete list of chat session states.
-
No active session. There will be no outgoing/incoming chat traffic.
Declaration
Objective-C
SCSChatSessionStateInactive
Swift
case inactive = 0
-
A connection with Live Agent servers is being established.
Declaration
Objective-C
SCSChatSessionStateConnecting
Swift
case connecting = 1
-
A connection has been established, but queueing for next available agent.
Declaration
Objective-C
SCSChatSessionStateQueued
Swift
case queued = 2
-
Connected with an agent to facilitate a chat session.
Declaration
Objective-C
SCSChatSessionStateConnected
Swift
case connected = 3
-
Session is in the process of cleaning up network connections and ending.
Declaration
Objective-C
SCSChatSessionStateEnding
Swift
case ending = 4