Rate this page:

CallState

Enum representing call or conference states.

Consts

Connected

Copy URL

The call or the conference is connected.

Connecting

Copy URL

The call or the conference is connecting.

The call is in the connecting state since it is started via Call.start or Call.answer API til it is connected or failed to connect.

Created

Copy URL

The initial state of a call or a conference that is created, but not started.

Disconnected

Copy URL

The call or the conference has ended.

After reaching this state, you cannot use the current call's features.

Disconnecting

Copy URL

The call or the conference is disconnecting.

The call is in the disconnecting state after Call.hangup or Conference.hangup is called.

The call state is changed to Disconnected when CallListener.onCallDisconnected or ConferenceListener.onConferenceDisconnected events are triggered.

Failed

Copy URL

The call or the conference has failed.

After reaching this state, you cannot use the current call's features.

Reconnecting

Copy URL

The call or the conference is reconnecting due to network issues.

Transfer to the Reconnecting state can happen from all states except Disconnecting, Disconnected, and Failed.

If the reconnect is successful, the state returns to the state before reconnect.

If the reconnect is not successful, the state becomes Failed if the call has not been established or Disconnected if the call has been established.