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
IVSParticipantPublishStateNotPublishedSwift
case notPublished = 0 - 
                  
                  
The participant is attempting to publish
Declaration
Objective-C
IVSParticipantPublishStateAttemptingPublishSwift
case attemptingPublish = 1 - 
                  
                  
The participant is publishing
Declaration
Objective-C
IVSParticipantPublishStatePublishedSwift
case published = 2