Android APIs
public static abstract class

RemoteConference.Callback

extends Object
java.lang.Object
   ↳ android.telecom.RemoteConference.Callback

Class Overview

Callback base class for RemoteConference.

Summary

Public Constructors
RemoteConference.Callback()
Public Methods
void onConferenceableConnectionsChanged(RemoteConference conference, List<RemoteConnection> conferenceableConnections)
Invoked when the set of RemoteConnections which can be added to this conference call have changed.
void onConnectionAdded(RemoteConference conference, RemoteConnection connection)
Invoked when a RemoteConnection is added to the conference call.
void onConnectionCapabilitiesChanged(RemoteConference conference, int connectionCapabilities)
Indicates that the call capabilities of this RemoteConference have changed.
void onConnectionRemoved(RemoteConference conference, RemoteConnection connection)
Invoked when a RemoteConnection is removed from the conference call.
void onDestroyed(RemoteConference conference)
Indicates that this RemoteConference has been destroyed.
void onDisconnected(RemoteConference conference, DisconnectCause disconnectCause)
Invoked when this RemoteConference is disconnected.
void onExtrasChanged(RemoteConference conference, Bundle extras)
Handles changes to the RemoteConference extras.
void onStateChanged(RemoteConference conference, int oldState, int newState)
Invoked when the state of this RemoteConferece has changed.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public RemoteConference.Callback ()

Added in API level 23

Public Methods

public void onConferenceableConnectionsChanged (RemoteConference conference, List<RemoteConnection> conferenceableConnections)

Added in API level 23

Invoked when the set of RemoteConnections which can be added to this conference call have changed.

Parameters
conference The RemoteConference invoking this method.
conferenceableConnections The list of conferenceable RemoteConnections.

public void onConnectionAdded (RemoteConference conference, RemoteConnection connection)

Added in API level 23

Invoked when a RemoteConnection is added to the conference call.

Parameters
conference The RemoteConference invoking this method.
connection The RemoteConnection being added.

public void onConnectionCapabilitiesChanged (RemoteConference conference, int connectionCapabilities)

Added in API level 23

Indicates that the call capabilities of this RemoteConference have changed. See getConnectionCapabilities().

Parameters
conference The RemoteConference invoking this method.
connectionCapabilities The new capabilities of the RemoteConference.

public void onConnectionRemoved (RemoteConference conference, RemoteConnection connection)

Added in API level 23

Invoked when a RemoteConnection is removed from the conference call.

Parameters
conference The RemoteConference invoking this method.
connection The RemoteConnection being removed.

public void onDestroyed (RemoteConference conference)

Added in API level 23

Indicates that this RemoteConference has been destroyed. No further requests should be made to the RemoteConference, and references to it should be cleared.

Parameters
conference The RemoteConference invoking this method.

public void onDisconnected (RemoteConference conference, DisconnectCause disconnectCause)

Added in API level 23

Invoked when this RemoteConference is disconnected.

Parameters
conference The RemoteConference invoking this method.
disconnectCause The () associated with this failed conference.

public void onExtrasChanged (RemoteConference conference, Bundle extras)

Added in API level 23

Handles changes to the RemoteConference extras.

Parameters
conference The RemoteConference invoking this method.
extras The extras containing other information associated with the conference.

public void onStateChanged (RemoteConference conference, int oldState, int newState)

Added in API level 23

Invoked when the state of this RemoteConferece has changed. See getState().

Parameters
conference The RemoteConference invoking this method.
oldState The previous state of the RemoteConference.
newState The new state of the RemoteConference.