VTNotificationDelegate
The VTNotificationDelegate model allows subscribing to callbacks that inform about the NotificationService events.
Methods
invitationReceived
▸ invitationReceived(notification
: VTInvitationReceivedNotification)
Called when an application user receives an invitation.
Parameters:
Name | Type | Description |
---|---|---|
notification | VTInvitationReceivedNotification | The received conference invitation. |
conferenceStatus
▸ conferenceStatus(notification
: VTConferenceStatusNotification)
Called when a status of the subscribed conference changes.
Parameters:
Name | Type | Description |
---|---|---|
notification | VTConferenceStatusNotification | The conference status. |
conferenceCreated
▸ conferenceCreated(notification
: VTConferenceCreatedNotification)
Called when a new conference is created.
Parameters:
Name | Type | Description |
---|---|---|
notification | VTConferenceCreatedNotification | The object containing properties specific to the created conference. |
conferenceEnded
▸ conferenceEnded(notification
: VTConferenceEndedNotification)
Called when a conference is ended.
Parameters:
Name | Type | Description |
---|---|---|
notification | VTConferenceEndedNotification | The object containing properties specific to the ended conference. |
participantJoined
▸ participantJoined(notification
: VTParticipantJoinedNotification)
Called when a new participant joins a conference.
Parameters:
Name | Type | Description |
---|---|---|
notification | VTParticipantJoinedNotification | The object containing properties specific to the new participant. |
participantLeft
▸ participantLeft(notification
: VTParticipantLeftNotification)
Called when a participant leaves a conference.
Parameters:
Name | Type | Description |
---|---|---|
notification | VTParticipantLeftNotification | The object containing properties specific to the participant who left the conference. |
Updated almost 2 years ago