Skip to content

IncomingWebrtcCallEvent

Lejla Solak edited this page Feb 10, 2025 · 4 revisions



getIncomingWebrtcCall()

Description

Getter for the incomingWebrtcCall field.

Arguments

  • none

Returns

  • IncomingWebrtcCall - The value of the incomingWebrtcCall field, which represents the incoming WebRTC call.

Example

IncomingCallEventListener incomingCallEventListener = incomingWebrtcCallEvent -> {
    IncomingWebrtcCall incomingWebrtcCall = incomingWebrtcCallEvent.getIncomingWebrtcCall();
};



getCustomData()

Description

Getter for the customData field.

Arguments

  • none

Returns

  • Map<String, String> - The value of the customData field, which is defined as an object of key-value string pairs containing custom additional information received with the incoming WebRTC call.

Example

IncomingCallEventListener incomingCallEventListener = incomingWebrtcCallEvent -> {
    Map<String, String> customData = incomingWebrtcCallEvent.getCustomData();
};

Tutorials

Migration guides

Reference documentation

Clone this wiki locally