-
- All Implemented Interfaces:
public final class VideoElement
Wrapper for VideoTrack with additional properties, which may me useful for populating RecyclerView
-
-
Field Summary
Fields Modifier and Type Field Description private final String
id
private final String
participantId
private final Boolean
isAudioSharing
private final String
userName
private final Integer
width
private final Integer
height
private final ScreenMeet.VideoSource
sourceType
private final VideoTrack
track
-
Constructor Summary
Constructors Constructor Description VideoElement(String id, String participantId, Boolean isAudioSharing, String userName, Integer width, Integer height, ScreenMeet.VideoSource sourceType, VideoTrack track)
-
Method Summary
Modifier and Type Method Description final String
getId()
final String
getParticipantId()
final Boolean
isAudioSharing()
final String
getUserName()
final Integer
getWidth()
final Integer
getHeight()
final ScreenMeet.VideoSource
getSourceType()
final VideoTrack
getTrack()
-
-
Method Detail
-
getParticipantId
final String getParticipantId()
-
isAudioSharing
final Boolean isAudioSharing()
-
getUserName
final String getUserName()
-
getSourceType
final ScreenMeet.VideoSource getSourceType()
-
getTrack
final VideoTrack getTrack()
-
-
-
-