-
Notifications
You must be signed in to change notification settings - Fork 2
WebrtcCallEventListener
extends CallEventListener
void onCameraVideoAdded(CameraVideoAddedEvent cameraVideoAddedEvent)void onCameraVideoUpdated(CameraVideoUpdatedEvent cameraVideoUpdatedEvent)void onCameraVideoRemoved(CameraVideoRemovedEvent cameraVideoRemovedEvent)void onScreenShareAdded(ScreenShareAddedEvent screenShareAddedEvent)void onScreenShareRemoved(ScreenShareRemovedEvent screenShareRemovedEvent)void onRemoteCameraVideoAdded(CameraVideoAddedEvent cameraVideoAddedEvent)void onRemoteCameraVideoRemoved()void onRemoteScreenShareAdded(ScreenShareAddedEvent screenShareAddedEvent)void onRemoteScreenShareRemoved()void onRemoteMuted()void onRemoteUnmuted()void onRemoteDisconnected(RemoteDisconnectedEvent remoteDisconnectedEvent)void onRemoteReconnected(RemoteReconnectedEvent remoteReconnectedEvent)
This callback method is triggered when a local camera video is added to the call.
-
cameraVideoAddedEvent:CameraVideoAddedEvent- Event object representing the local camera RTC video track.
N/A
This callback method is triggered when the local camera video is updated during the call.
-
cameraVideoUpdatedEvent:CameraVideoUpdatedEvent- Event object representing the updated local camera RTC video track.
N/A
This callback method is triggered when the local camera video is removed during the call.
-
cameraVideoRemovedEvent:CameraVideoRemovedEvent- Event object representing the reason for the removal of the camera video.
N/A
This callback method is triggered when screen sharing is initiated locally on the call.
-
screenShareAddedEvent:ScreenShareAddedEvent- Event object representing the screen share track added to the call.
N/A
This callback method is triggered when screen sharing is removed locally from the call.
-
screenShareRemovedEvent:ScreenShareRemovedEvent- Event object representing the reason for the removal of the screen share.
N/A
This callback method is triggered when a remote endpoint adds their camera video to the call.
-
cameraVideoAddedEvent:CameraVideoAddedEvent- Event object representing the remote camera RTC video track.
N/A
This callback method is triggered when a remote endpoint removes their camera video from the call.
N/A
N/A
This callback method is triggered when a remote endpoint starts sharing their screen on the call.
-
screenShareAddedEvent:ScreenShareAddedEvent- Event object representing the remote screen share RTC video track.
N/A
This callback method is triggered when a remote endpoint stops sharing their screen on the call.
N/A
N/A
This callback method is triggered when a remote endpoint is muted on the call.
N/A
N/A
This callback method is triggered when a remote endpoint is unmuted on the call.
N/A
N/A
This callback method is triggered when a remote endpoint disconnects from the call.
-
remoteDisconnectedEvent:RemoteDisconnectedEvent- Event object representing the remote user disconnecting.
N/A
This callback method is triggered when a remote endpoint reconnects to the call.
-
remoteReconnectedEvent:RemoteReconnectedEvent- Event object representing the remote user reconnecting.
N/A