Package | Description |
---|---|
oracle.wsc.android.call |
Provides a Call handling API.
|
Modifier and Type | Field and Description |
---|---|
static CallState |
CallState.ENDED
The call has ended normally.
|
static CallState |
CallState.ESTABLISHED
The call has been established.
|
static CallState |
CallState.FAILED
The call has encountered an exception and has been closed abnormally.
|
static CallState |
CallState.NONE
Initial call state.
|
static CallState |
CallState.REJECTED
The call has ended due to rejection.
|
static CallState |
CallState.RESPONDED
For the call initiator, this state means the call request has been responded to by
remote side; for the call receiver,
this state means the receiver has responded to the incoming request.
|
static CallState |
CallState.STARTED
The call has started.
|
Modifier and Type | Method and Description |
---|---|
CallState |
Call.getCallState()
Gets the current state of a call.
|
static CallState |
CallState.getCallState(String value)
Gets State by the call state string.
|
static CallState |
CallState.valueOf(String name) |
static CallState[] |
CallState.values() |
Modifier and Type | Method and Description |
---|---|
abstract void |
Call.Observer.stateChanged(CallState state,
Cause cause,
Map extHeaders)
Called whenever the call state is changed.
|