VTConferenceDelegate
The VTConferenceDelegate model allows subscribing to callbacks that inform about the ConferenceService events.
Methods
statusUpdated
▸ statusUpdated(status
: VTConferenceStatus)
Called when a conference status changes.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
status | VTConferenceStatus | nil | The conference status. |
permissionsUpdated
▸ permissionsUpdated(permissions
: [Int])
Called when the local participant's conference permission changes.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
permissions | [Int] | nil | The updated conference permission, where [Int] represents an array of VTConferencePermission raw values. |
participantAdded
▸ participantAdded(participant
: VTParticipant)
Called when a new participant is invited to a conference.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
participant | VTParticipant | nil | The invited participant. |
participantUpdated
▸ participantUpdated(participant
: VTParticipant)
Called when a participant changes status.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
participant | VTParticipant | nil | The conference participant who changed status. |
streamAdded
▸ streamAdded(participant
: VTParticipant, stream
: MediaStream)
Called when a new media stream is added to a conference participant.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
participant | VTParticipant | nil | The participant whose stream was added to a conference. |
stream | MediaStream | nil | The added media stream. |
streamUpdated
▸ streamUpdated(participant
: VTParticipant, stream
: MediaStream)
Called when a conference participant modifies a media stream.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
participant | VTParticipant | nil | The participant whose stream was updated during a conference. |
stream | MediaStream | nil | The updated media stream. |
streamRemoved
▸ streamRemoved(participant
: VTParticipant, stream
: MediaStream)
Called when a conference participant removes a media stream.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
participant | VTParticipant | nil | The participant whose stream was removed from a conference. |
stream | MediaStream | nil | The removed media stream. |
Updated almost 2 years ago