Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 1.1 KB

sip.js.outgoingrequestdelegate.md

File metadata and controls

24 lines (16 loc) · 1.1 KB

Home > sip.js > OutgoingRequestDelegate

OutgoingRequestDelegate interface

Delegate providing custom handling of outgoing requests.

Signature:

export interface OutgoingRequestDelegate 

Methods

Method Description
onAccept(response) Received a 2xx positive final response to this request.
onProgress(response) Received a 1xx provisional response to this request. Excluding 100 responses.
onRedirect(response) Received a 3xx negative final response to this request.
onReject(response) Received a 4xx, 5xx, or 6xx negative final response to this request.
onTrying(response) Received a 100 provisional response.