ParticipantDeviceState
public enum ParticipantDeviceState : Int
ParticipantDeviceState is used to list all states a participant device can be///in
-
an INVITE has been sent
Declaration
Swift
case Joining = 0 -
the SIP session has been concluded, participant is part of the conference
Declaration
Swift
case Present = 1 -
A BYE is pending.
Declaration
Swift
case Leaving = 2 -
The Session is terminated.
Declaration
Swift
case Left = 3 -
Initial state for the server group chatroom, when the participant has not yet been INVITEd.
Declaration
Swift
case ScheduledForJoining = 4 -
Transitional state for a participant that will receive a BYE shortly.
Declaration
Swift
case ScheduledForLeaving = 5 -
the SIP session has been concluded, participant is not media mixed
Declaration
Swift
case OnHold = 6 -
180 Ringing
Declaration
Swift
case Alerting = 7 -
Some medias have been muted by the focus.
Declaration
Swift
case MutedByFocus = 8
ParticipantDeviceState Enumeration Reference