Class RecordingChunk
- java.lang.Object
-
- org.apache.openmeetings.db.entity.HistoricalEntity
-
- org.apache.openmeetings.db.entity.record.RecordingChunk
-
- All Implemented Interfaces:
Serializable
,IDataProviderEntity
@Entity public class RecordingChunk extends HistoricalEntity
contains data about each stream, for example if it is a screen sharing or audio/video stream. There is also aRecordingChunk.Status
valuestreamStatus
, as long as this variable is not set toRecordingChunk.Status.STOPPED
, the recording process will not proceed and start to convert all input sources to a single recording file.- Author:
- sebawagner
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RecordingChunk.Status
static class
RecordingChunk.Type
-
Constructor Summary
Constructors Constructor Description RecordingChunk()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getEnd()
Long
getId()
Recording
getRecording()
String
getSid()
Date
getStart()
String
getStreamName()
RecordingChunk.Status
getStreamStatus()
RecordingChunk.Type
getType()
boolean
isAudioOnly()
void
setEnd(Date end)
void
setId(Long id)
void
setRecording(Recording recording)
void
setSid(String sid)
void
setStart(Date start)
void
setStreamName(String streamName)
void
setStreamStatus(RecordingChunk.Status status)
void
setType(RecordingChunk.Type type)
-
Methods inherited from class org.apache.openmeetings.db.entity.HistoricalEntity
getInserted, getUpdated, isDeleted, setDeleted, setInserted, setUpdated
-
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getRecording
public Recording getRecording()
-
setRecording
public void setRecording(Recording recording)
-
getStart
public Date getStart()
-
setStart
public void setStart(Date start)
-
getEnd
public Date getEnd()
-
setEnd
public void setEnd(Date end)
-
getType
public RecordingChunk.Type getType()
-
setType
public void setType(RecordingChunk.Type type)
-
isAudioOnly
public boolean isAudioOnly()
-
getStreamName
public String getStreamName()
-
setStreamName
public void setStreamName(String streamName)
-
getSid
public String getSid()
-
setSid
public void setSid(String sid)
-
getStreamStatus
public RecordingChunk.Status getStreamStatus()
-
setStreamStatus
public void setStreamStatus(RecordingChunk.Status status)
-
-