Interface VideoCallListener

  • All Implemented Interfaces:
    com.sinch.android.rtc.calling.CallListener

    
    public interface VideoCallListener
     implements CallListener
                        

    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.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Unit onVideoTrackAdded(Call call) Called when a Video track has been added to the call.
      abstract Unit onVideoTrackPaused(Call call) Called when a Video track has been paused by the remote participant.
      abstract Unit onVideoTrackResumed(Call call) Called when a Video track has been resumed by the remote participant.
      • Methods inherited from class com.sinch.android.rtc.calling.CallListener

        onCallAnswered, onCallEnded, onCallEstablished, onCallProgressing, onCallRinging
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • onVideoTrackAdded

         abstract Unit 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.

        Parameters:
        call - The call that had video tracks added.
      • onVideoTrackPaused

         abstract Unit onVideoTrackPaused(Call call)

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

        Parameters:
        call - The call that had video tracks paused.
      • onVideoTrackResumed

         abstract Unit onVideoTrackResumed(Call call)

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

        Parameters:
        call - The call that had video tracks resumed.