Mic Request Listener
interface MicRequestListener
Listener interface for responding to a microphone enable request from a remote participant.
This listener is provided in the onMicRequested callback. Call accept to enable the microphone or reject to decline the request.
Code Example:
public void onMicRequested(String participantId, MicRequestListener listener) {
// Show a dialog, then:
listener.accept(); // or listener.reject();
}
Content copied to clipboard
See also
MeetingEventListener.onMicRequested()
Participant.enableMic()