public interface TelecomServiceEventListener
| Modifier and Type | Method and Description |
|---|---|
void |
onAcceptButtonClick(com.avaya.clientservices.call.Call call,
com.avaya.clientservices.media.AudioDevice audioDevice)
Called to report that accept call button was pressed.
|
void |
onCallAudioRouteChanged(com.avaya.clientservices.call.Call call,
android.telecom.CallAudioState state)
Notifies this Connection that the audio route was probably changed.
|
void |
onCallTelecomMuteStateChanged(com.avaya.clientservices.call.Call call,
boolean bNewMuteState)
Notifies this Connection that the audio mute state was probably changed.
|
void |
onEndButtonClick(com.avaya.clientservices.call.Call call)
Called to report that end call button was pressed.
|
void |
onHoldButtonClick(com.avaya.clientservices.call.Call call)
Called to report that hold/unhold call button was pressed.
|
void |
onUnholdButtonClick(com.avaya.clientservices.call.Call call) |
void onAcceptButtonClick(com.avaya.clientservices.call.Call call,
com.avaya.clientservices.media.AudioDevice audioDevice)
call - - identifies the call that was acceptedaudioDevice - - identifies the audio device via which the call was acceptedvoid onEndButtonClick(com.avaya.clientservices.call.Call call)
call - - identifies the call that was endedvoid onHoldButtonClick(com.avaya.clientservices.call.Call call)
call - - identifies the call that was held/unheld
NOTE: in current implementation this interface is never called since HOLD operation is currently not supportedvoid onUnholdButtonClick(com.avaya.clientservices.call.Call call)
void onCallAudioRouteChanged(com.avaya.clientservices.call.Call call,
android.telecom.CallAudioState state)
call - - identifies the call for which state was changedstate - The new audio state (includes current audio route).void onCallTelecomMuteStateChanged(com.avaya.clientservices.call.Call call,
boolean bNewMuteState)
call - - identifies the call for which state was changedbNewMuteState - The new audio mute state.