VideoCallListener

Represents a listener for Call events connected with a video call. This listener will be notified about same events as usual CallListener and extra ones connected with video specific functionalities. The listener can be added by invoking same Call.addCallListener method as for usual audio-only call.

See also

Functions

Link copied to clipboard
abstract fun onCallEnded(call: Call)

Tells the listener that the call has entered the CallState.ENDED state.

Link copied to clipboard
abstract fun onCallEstablished(call: Call)

Tells the listener that the call has entered the CallState.ESTABLISHED state.

Link copied to clipboard
abstract fun onCallProgressing(call: Call)

Tells the listener that the outgoing call has entered the CallState.PROGRESSING state and a progress tone can be played.

Link copied to clipboard
abstract fun onVideoTrackAdded(call: Call)

Called when a Video track has been added to the call. To get the local preview and the remote stream, see VideoController.remoteView and VideoController.localView.

Link copied to clipboard
abstract fun onVideoTrackPaused(call: Call)

Called when a Video track has been paused by the remote participant.

Link copied to clipboard
abstract fun onVideoTrackResumed(call: Call)

Called when a Video track has been resumed by the remote participant.