Home > sip.js > OutgoingRequestDelegate
Delegate providing custom handling of outgoing requests.
Signature:
export interface OutgoingRequestDelegate
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. |