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 a RecordingChunk.Status value streamStatus, as long as this variable is not set to RecordingChunk.Status.STOPPED, the recording process will not proceed and start to convert all input sources to a single recording file.
Author:
sebawagner
See Also:
  • Constructor Details

    • RecordingChunk

      public RecordingChunk()
  • Method Details

    • 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)