Skip to content

Function: addCallAnsweredListener()

ts
function addCallAnsweredListener(listener): EventSubscription;

Defined in: Calls.ts:505

Subscribes to call answered events.

Fired when the user answers an incoming call (either from the system UI or via answerCall). You should begin connecting your media.

Parameters

ParameterTypeDescription
listener(event) => voidCallback invoked when a call is answered.

Returns

EventSubscription

A subscription that can be removed by calling .remove().

See

Released under the MIT License.