Added in API level 34

CallControl


public final class CallControl
extends Object

java.lang.Object
   ↳ android.telecom.CallControl


CallControl provides client side control of a call. Each Call will get an individual CallControl instance in which the client can alter the state of the associated call.

Each method is Transactional meaning that it can succeed or fail. If a transaction succeeds, the OutcomeReceiver#onResult will be called by Telecom. Otherwise, the OutcomeReceiver#onError is called and provides a CallException that details why the operation failed.

Summary

Public methods

void answer(int videoState, Executor executor, OutcomeReceiver<VoidCallException> callback)

Request Telecom answer an incoming call.

void disconnect(DisconnectCause disconnectCause, Executor executor, OutcomeReceiver<VoidCallException> callback)

Request Telecom disconnect the call and remove the call from telecom tracking.

ParcelUuid getCallId()
void requestCallEndpointChange(CallEndpoint callEndpoint, Executor executor, OutcomeReceiver<VoidCallException> callback)

Request a CallEndpoint change.

void sendEvent(String event, Bundle extras)

Raises an event to the InCallService implementations tracking this call via Call.Callback.onConnectionEvent(Call, String, Bundle).

void setActive(Executor executor, OutcomeReceiver<VoidCallException> callback)

Request Telecom set the call state to active.

void setInactive(Executor executor, OutcomeReceiver<VoidCallException> callback)

Request Telecom set the call state to inactive.

void startCallStreaming(Executor executor, OutcomeReceiver<VoidCallException> callback)

Request start a call streaming session.

Inherited methods

Public methods

answer

Added in API level 34
public void answer (int videoState, 
                Executor executor, 
                OutcomeReceiver<VoidCallException> callback)

Request Telecom answer an incoming call. For outgoing calls and calls that have been placed on hold, use CallControl#setActive(Executor, OutcomeReceiver).

Parameters
videoState int: to report to Telecom. Telecom will store VideoState in the event another service/device requests it in order to continue the call on another screen. Value is CallAttributes.AUDIO_CALL, or CallAttributes.VIDEO_CALL

executor Executor: The Executor on which the OutcomeReceiver callback will be called on. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread. This value cannot be null.

callback OutcomeReceiver: that will be completed on the Telecom side that details success or failure of the requested operation. OutcomeReceiver#onResult will be called if Telecom has successfully switched the call state to active OutcomeReceiver#onError will be called if Telecom has failed to set the call state to active. A CallException will be passed that details why the operation failed. This value cannot be null.

disconnect

Added in API level 34
public void disconnect (DisconnectCause disconnectCause, 
                Executor executor, 
                OutcomeReceiver<VoidCallException> callback)

Request Telecom disconnect the call and remove the call from telecom tracking.

Parameters
disconnectCause DisconnectCause: represents the cause for disconnecting the call. The only valid codes for the DisconnectCause passed in are: This value cannot be null.

executor Executor: The Executor on which the OutcomeReceiver callback will be called on. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread. This value cannot be null.

callback OutcomeReceiver: That will be completed on the Telecom side that details success or failure of the requested operation. OutcomeReceiver#onResult will be called if Telecom has successfully disconnected the call. OutcomeReceiver#onError will be called if Telecom has failed to disconnect the call. A CallException will be passed that details why the operation failed.

Note: After the call has been successfully disconnected, calling any CallControl API will result in the OutcomeReceiver#onError with CallException#CODE_CALL_IS_NOT_BEING_TRACKED. This value cannot be null.

getCallId

Added in API level 34
public ParcelUuid getCallId ()

Returns
ParcelUuid the callId Telecom assigned to this CallControl object which should be attached to an individual call. This value cannot be null.

requestCallEndpointChange

Added in API level 34
public void requestCallEndpointChange (CallEndpoint callEndpoint, 
                Executor executor, 
                OutcomeReceiver<VoidCallException> callback)

Request a CallEndpoint change. Clients should not define their own CallEndpoint when requesting a change. Instead, the new endpoint should be one of the valid endpoints provided by CallEventCallback#onAvailableCallEndpointsChanged(List).

Parameters
callEndpoint CallEndpoint: The CallEndpoint to change to. This value cannot be null.

executor Executor: The Executor on which the OutcomeReceiver callback will be called on. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread. This value cannot be null.

callback OutcomeReceiver: The OutcomeReceiver that will be completed on the Telecom side that details success or failure of the requested operation. OutcomeReceiver#onResult will be called if Telecom has successfully changed the CallEndpoint that was requested. OutcomeReceiver#onError will be called if Telecom has failed to switch to the requested CallEndpoint. A CallException will be passed that details why the operation failed. This value cannot be null.

sendEvent

Added in API level 34
public void sendEvent (String event, 
                Bundle extras)

Raises an event to the InCallService implementations tracking this call via Call.Callback.onConnectionEvent(Call, String, Bundle). These events and the associated extra keys for the Bundle parameter are mutually defined by a VoIP application and InCallService. This API is used to relay additional information about a call other than what is specified in the CallAttributes to InCallServices. This might include, for example, a change to the list of participants in a meeting, or the name of the speakers who have their hand raised. Where appropriate, the InCallServices tracking this call may choose to render this additional information about the call. An automotive calling UX, for example may have enough screen real estate to indicate the number of participants in a meeting, but to prevent distractions could suppress the list of participants.

Parameters
event String: a string event identifier agreed upon between a VoIP application and an InCallService This value cannot be null.

extras Bundle: a Bundle containing information about the event, as agreed upon between a VoIP application and InCallService. This value cannot be null.

setActive

Added in API level 34
public void setActive (Executor executor, 
                OutcomeReceiver<VoidCallException> callback)

Request Telecom set the call state to active. This method should be called when either an outgoing call is ready to go active or a held call is ready to go active again. For incoming calls that are ready to be answered, use CallControl#answer(int, Executor, OutcomeReceiver).

Parameters
executor Executor: The Executor on which the OutcomeReceiver callback will be called on. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread. This value cannot be null.

callback OutcomeReceiver: that will be completed on the Telecom side that details success or failure of the requested operation. OutcomeReceiver#onResult will be called if Telecom has successfully switched the call state to active OutcomeReceiver#onError will be called if Telecom has failed to set the call state to active. A CallException will be passed that details why the operation failed. This value cannot be null.

setInactive

Added in API level 34
public void setInactive (Executor executor, 
                OutcomeReceiver<VoidCallException> callback)

Request Telecom set the call state to inactive. This the same as hold for two call endpoints but can be extended to setting a meeting to inactive.

Parameters
executor Executor: The Executor on which the OutcomeReceiver callback will be called on. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread. This value cannot be null.

callback OutcomeReceiver: that will be completed on the Telecom side that details success or failure of the requested operation. OutcomeReceiver#onResult will be called if Telecom has successfully switched the call state to inactive OutcomeReceiver#onError will be called if Telecom has failed to set the call state to inactive. A CallException will be passed that details why the operation failed. This value cannot be null.

startCallStreaming

Added in API level 34
public void startCallStreaming (Executor executor, 
                OutcomeReceiver<VoidCallException> callback)

Request start a call streaming session. On receiving valid request, telecom will bind to the CallStreamingService implemented by a general call streaming sender. So that the call streaming sender can perform streaming local device audio to another remote device and control the call during streaming.

Parameters
executor Executor: The Executor on which the OutcomeReceiver callback will be called on. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread. This value cannot be null.

callback OutcomeReceiver: that will be completed on the Telecom side that details success or failure of the requested operation. OutcomeReceiver#onResult will be called if Telecom has successfully started the call streaming. OutcomeReceiver#onError will be called if Telecom has failed to start the call streaming. A CallException will be passed that details why the operation failed. This value cannot be null.