IVSParticipantPublishState
Objective-C
enum IVSParticipantPublishState : NSUInteger {}
Swift
@frozen enum IVSParticipantPublishState : UInt, @unchecked Sendable
The various potential publish states for a participant
-
The participant is not publishing and not attempting to publish
Declaration
Objective-C
IVSParticipantPublishStateNotPublished
Swift
case notPublished = 0
-
The participant is attempting to publish
Declaration
Objective-C
IVSParticipantPublishStateAttemptingPublish
Swift
case attemptingPublish = 1
-
The participant is publishing
Declaration
Objective-C
IVSParticipantPublishStatePublished
Swift
case published = 2