Function: addIncomingCallReportedListener()
ts
function addIncomingCallReportedListener(listener): EventSubscription;Defined in: Calls.ts:462
Subscribes to incoming call reported events.
Fired after an incoming call has been successfully reported to the system and the call session has been added to the store. Use this to set up early subscriptions (e.g., call signaling) before the call is answered.
Parameters
| Parameter | Type | Description |
|---|---|---|
listener | (event) => void | Callback invoked when an incoming call is reported. |
Returns
EventSubscription
A subscription that can be removed by calling .remove().
See
- reportIncomingCall — the report that triggers this event.
- addCallAnsweredListener — fires when the user answers from the system UI.