Calls a phone number and terminates the call to the PSTN-network (Publicly Switched Telephone Network).
The phone number to call. The phone number should be given according to E.164 number formatting (http://en.wikipedia.org/wiki/E.164) and should be prefixed with a '+'. E.g. to call the US phone number 415 555 0101, it should be specified as "+14155550101", where the '+' is the required prefix and the US country code '1' added before the local subscriber number.
Headers to pass with the call.
A Call instance.
Remove listener for incoming call events.
Sets or removes audio track constraints that will be applied when creating a new Call.
The constraints to apply for the audio track:
{ deviceId: { exact: "mic-id" }, echoCancellation: true }
).null
to remove previously set constraints, falling back to the default device
when requesting audio.Sets or removes video track constraints that will be applied when creating a new Call.
The constraints to apply for the video track:
{ width: 1280, height: 720 }
).null
to remove previously set constraints, falling back to default constraints
(e.g. the {@link DefaultMediaStreamFactory}'s default video constraints, if provided).Generated using TypeDoc
The CallClientListener object will be notified of new incoming calls.