-
Notifications
You must be signed in to change notification settings - Fork 2
ScreenShareAddedEvent
Lejla Solak edited this page Feb 10, 2025
·
3 revisions
Getter for the track field.
none
-
RTCVideoTrack- The value of thetrackfield, which represents the local screenshare video track.
WebrtcCallEventListener webrtcCallEventListener = new DefaultWebrtcCallEventListener() {
@Override
public void onScreenShareAdded(ScreenShareAddedEvent screenShareAddedEvent) {
RTCVideoTrack localScreenShareTrack = screenShareAddedEvent.getTrack();
}
};