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();
}

See also

MeetingEventListener.onMicRequested()

Participant.enableMic()

Functions

Link copied to clipboard
abstract fun accept()
Accepts the mic request and enables the local participant's microphone.
Link copied to clipboard
abstract fun reject()
Rejects the mic request.