MeetingSessionStatusCode
@objc
public enum MeetingSessionStatusCode : UInt32, CustomStringConvertible
-
Everything is OK so far.
Declaration
Swift
case ok = 0 -
The audio leg failed.
Declaration
Swift
case audioDisconnected = 9 -
Due to connection health a reconnect has been triggered.
Declaration
Swift
case connectionHealthReconnect = 10 -
Network is not good enough for VoIP.
Declaration
Swift
case networkBecomePoor = 59 -
Server hung up.
Declaration
Swift
case audioServerHungup = 60 -
The attendee joined from another device.
Declaration
Swift
case audioJoinedFromAnotherDevice = 61 -
There was an internal server error with the audio leg.
Declaration
Swift
case audioInternalServerError = 62 -
Authentication was rejected. The client is not allowed on this call.
Declaration
Swift
case audioAuthenticationRejected = 63 -
The client can not join because the call is at capacity.
Declaration
Swift
case audioCallAtCapacity = 64 -
Could not connect the audio leg due to the service being unavailable.
Declaration
Swift
case audioServiceUnavailable = 65 -
The attendee should explicitly switch itself from joined with audio to checked-in.
Declaration
Swift
case audioDisconnectAudio = 69 -
The call was ended.
Declaration
Swift
case audioCallEnded = 75 -
video service is unavailable.
Declaration
Swift
case videoServiceUnavailable = 12 -
If State cannot be parsed, then use this state.
Declaration
Swift
case unknown = 78 -
When maximum concurrent video channel reached
Declaration
Swift
case videoAtCapacityViewOnly = 206 -
Designated input device is not responding and timed out.
Declaration
Swift
case audioInputDeviceNotResponding = 82 -
Designated output device is not responding and timed out.
Declaration
Swift
case audioOutputDeviceNotResponding = 83 -
Declaration
Swift
public var description: String { get }
MeetingSessionStatusCode Enumeration Reference