Package us.zoom.sdk
Interface InMeetingSignInterpretationControllerEvent
public interface InMeetingSignInterpretationControllerEvent
Meeting sign interpretation callback event.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onAvailableSignLanguageListUpdated
(List<ISignInterpretationLanguageInfo> availableSignLanguageList) Available sign languages changed callback.void
Callback event of the requirement to unmute the audio.void
onSignInterpretationStatusChanged
(InMeetingSignInterpretationController.SignInterpretationStatus status) Sign interpretation status change callback.void
Sign interpreter languages changed callback.void
Sign interpreter list changed callback.void
Interpreters role changed callback.void
onTalkPrivilegeChanged
(boolean hasPrivilege) Callback event for the user talk privilege changed.
-
Method Details
-
onSignInterpretationStatusChanged
void onSignInterpretationStatusChanged(InMeetingSignInterpretationController.SignInterpretationStatus status) Sign interpretation status change callback. This function is used to inform the user sign interpretation has been started or stopped, and all users in the meeting can get the event.- Parameters:
status
- Specify current sign interpretation status.
-
onSignInterpreterListChanged
void onSignInterpreterListChanged()Sign interpreter list changed callback. When an interpreter leaves the meeting, preset interpreter joins the meeting, or the host adds or removes an interpreter, this will be triggered. -
onSignInterpreterRoleChanged
void onSignInterpreterRoleChanged()Interpreters role changed callback. when myself role changed between participant and interpreter, and only myself in meeting can get the event. -
onSignInterpreterLanguageChanged
void onSignInterpreterLanguageChanged()Sign interpreter languages changed callback. when a sign interpreter's languages changed, and only the sign interpreter self can get the event. -
onAvailableSignLanguageListUpdated
void onAvailableSignLanguageListUpdated(List<ISignInterpretationLanguageInfo> availableSignLanguageList) Available sign languages changed callback. When the available sign languages in a meeting changed, all users in the meeting can get the event.- Parameters:
availableSignLanguageList
- Specify the available sign languages list. For more details, seeISignInterpretationLanguageInfo
-
onTalkPrivilegeChanged
void onTalkPrivilegeChanged(boolean hasPrivilege) Callback event for the user talk privilege changed. When the interpreter role or host changes, host allows or disallows interpreter talk, this will be triggered. Only the sign interpreter can get the event.- Parameters:
hasPrivilege
- Specify whether the user has talk privilege or not.
-
onRequestSignInterpreterToTalk
void onRequestSignInterpreterToTalk()Callback event of the requirement to unmute the audio.
-