Video Call Listener
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
Tells the listener that the callee answered the call. Note that it might take some time after this callback is invoked for media stream to connect. See onCallEstablished for more information.
Tells the listener that the call has entered the CallState.ENDED state.
Tells the listener that the call was answered and media stream is connected. This means both peers should be able to hear and communicate with each other. This callback ideally is invoked shortly after onCallAnswered, however for various reasons (e.g bad network conditions) it might take few seconds to fully establish a connection after the call is answered.
Tells the listener that the outgoing call has entered the CallState.PROGRESSING state and a progress tone can be played.
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.
Called when a Video track has been paused by the remote participant.
Called when a Video track has been resumed by the remote participant.