-
Notifications
You must be signed in to change notification settings - Fork 2
IncomingCallEventListener
Lejla Solak edited this page Feb 10, 2025
·
6 revisions
This callback method is triggered once an incoming WebRTC call event has been received.
-
incomingWebrtcCallEvent:IncomingWebrtcCallEvent- Event object containing the received incoming WebRTC call, along with any associated custom data.
N/A
IncomingCallEventListener incomingCallEventListener = incomingWebrtcCallEvent -> {
IncomingWebrtcCall incomingWebrtcCall = incomingWebrtcCallEvent.getIncomingWebrtcCall();
Map<String, String> customData = incomingWebrtcCallEvent.getCustomData();
};