IVSParticipantSubscribeState
Objective-C
enum IVSParticipantSubscribeState : NSUInteger {}
Swift
@frozen enum IVSParticipantSubscribeState : UInt, @unchecked Sendable
The various potential subscribe states for a participant
-
The participant is not being subscribed to
Declaration
Objective-C
IVSParticipantSubscribeStateNotSubscribed
Swift
case notSubscribed = 0
-
An subscription is being established to the remote participant
Declaration
Objective-C
IVSParticipantSubscribeStateAttemptingSubscribe
Swift
case attemptingSubscribe = 1
-
There is a connected subscription to the remote participant
Declaration
Objective-C
IVSParticipantSubscribeStateSubscribed
Swift
case subscribed = 2