Package com.sinch.android.rtc.video
Interface VideoCallListener
-
- All Superinterfaces:
CallListener
public interface VideoCallListener extends CallListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onVideoTrackAdded(Call call)
Called when a Video track has been added to the call.void
onVideoTrackPaused(Call call)
void
onVideoTrackResumed(Call call)
-
Methods inherited from interface com.sinch.android.rtc.calling.CallListener
onCallEnded, onCallEstablished, onCallProgressing
-
-
-
-
Method Detail
-
onVideoTrackAdded
void onVideoTrackAdded(Call call)
Called when a Video track has been added to the call. To get the local preview and the remote stream, seeVideoController
.- Parameters:
call
- The call that had video tracks added.
-
onVideoTrackPaused
void onVideoTrackPaused(Call call)
-
onVideoTrackResumed
void onVideoTrackResumed(Call call)
-
-