Drop Participant

The objective is to implement Drop a participant from call by moderator feature

Drop selected participant or all participants out of Conference Room, including the moderator.

Note: Owner/Admin/Moderator has privilege to Drop a participant.

API:

VidyoConnectorDropParticipant is used to drop a participant and application needs to register VidyoConnectorRegisterModerationResultEventListener to get the result.

DropParticipant(Participant participant, String reason)

This API accepts two parameters. Participant class and a string reason value.

Example:

retValue = GetConnectorInstance.DropParticipant(participant, "Moderation");

DropAllParticipants:

API : VidyoConnectorDropAllParticipant

Example:

retValue = GetConnectorInstance.DropAllParticipants("Moderation");

Last updated