... | ... | @@ -19,9 +19,9 @@ CallStates as it's name suggests signifies the current state of the calling fram |
|
|
CallState.ON_HOLD
|
|
|
CallState.BYE
|
|
|
```
|
|
|
We get these call states in updateCallstate() function in SDKSIPListener interface. Every state has it's own Meaning and the UI should be designed according to the current Updated state. For example CallState._200_OK means that a call is currently going on. *You can get the current state from SIPProvider.getcallState too but that is not recommended*
|
|
|
We get these call states in updateCallstate() function in SDKSIPListener interface. Every state has it's own Meaning and the UI should be designed according to the current Updated state. For example CallState._200_OK means that a call is currently going on. *You can also get the current state from SIPProvider.getcallState too but that is not recommended*
|
|
|
|
|
|
2. **Error Codes:** You can get any error code integer value. You can use those errorcodes' meaning to show to the UI why their calls failed if necessary. eg. 403, 404, 486 etc
|
|
|
2. **Error Codes:** You can get any error code integer value. You can use those errorcodes' meaning to show to the UI why their calls failed if necessary. eg. 403, 404, 486 etc.
|
|
|
|
|
|
3. **Display Status:** SDKSIPListener can update the Display Status. The Display status is shown in the UI.
|
|
|
Available DIsplay Statuses are:
|
... | ... | |