IVSStageSubscribeType

Objective-C

enum IVSStageSubscribeType : NSInteger {}

Swift

enum IVSStageSubscribeType : Int, @unchecked Sendable

The options for subscription types

  • Do not subscribe to a participant.

    Declaration

    Objective-C

    IVSStageSubscribeTypeNone = 0

    Swift

    case none = 0
  • Subscribe to this participant, but only receive audio.

    Declaration

    Objective-C

    IVSStageSubscribeTypeAudioOnly = 1

    Swift

    case audioOnly = 1
  • Subscribe to this participant, both audio and video.

    Declaration

    Objective-C

    IVSStageSubscribeTypeAudioVideo = 2

    Swift

    case audioVideo = 2