java.lang.Object | |
↳ | android.net.sip.SipAudioCall.Listener |
Listener for events relating to a SIP call, such as when a call is being recieved ("on ringing") or a call is outgoing ("on calling").
Many of these events are also received by SipSession.Listener
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Called when the peer is busy during session initialization.
| |||||||||||
Called when the session is terminated.
| |||||||||||
Called when the session is established.
| |||||||||||
Called when the call is on hold.
| |||||||||||
Called when a request is sent out to initiate a new call.
| |||||||||||
Called when an event occurs and the corresponding callback is not
overridden.
| |||||||||||
Called when an error occurs.
| |||||||||||
Called when the call object is ready to make another call.
| |||||||||||
Called when a new call comes in.
| |||||||||||
Called when a RINGING response is received for the INVITE request
sent.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Called when the peer is busy during session initialization.
The default implementation calls onChanged(SipAudioCall)
.
call | the call object that carries out the audio call |
---|
Called when the session is terminated.
The default implementation calls onChanged(SipAudioCall)
.
call | the call object that carries out the audio call |
---|
Called when the session is established.
The default implementation calls onChanged(SipAudioCall)
.
call | the call object that carries out the audio call |
---|
Called when the call is on hold.
The default implementation calls onChanged(SipAudioCall)
.
call | the call object that carries out the audio call |
---|
Called when a request is sent out to initiate a new call.
The default implementation calls onChanged(SipAudioCall)
.
call | the call object that carries out the audio call |
---|
Called when an event occurs and the corresponding callback is not
overridden. The default implementation is no op. Error events are
not re-directed to this callback and are handled in onError(SipAudioCall, int, String)
.
Called when an error occurs. The default implementation is no op.
call | the call object that carries out the audio call |
---|---|
errorCode | error code of this error |
errorMessage | error message |
Called when the call object is ready to make another call.
The default implementation calls onChanged(SipAudioCall)
.
call | the call object that is ready to make another call |
---|
Called when a new call comes in.
The default implementation calls onChanged(SipAudioCall)
.
call | the call object that carries out the audio call |
---|---|
caller | the SIP profile of the caller |
Called when a RINGING response is received for the INVITE request
sent. The default implementation calls onChanged(SipAudioCall)
.
call | the call object that carries out the audio call |
---|