Class RecordingImpl

java.lang.Object
org.opencastproject.scheduler.api.RecordingImpl
All Implemented Interfaces:
Recording

public class RecordingImpl extends Object implements Recording
An in-memory construct to represent the state of a recording, and when it was last heard from.
  • Constructor Details

    • RecordingImpl

      public RecordingImpl(String recordingID, String recordingState, long lastHeard)
      Builds a representation of the recording.
      Parameters:
      recordingID - The ID of the recording.
      recordingState - The state of the recording. This should be defined from RecordingState.
      lastHeard - The time at which the recording last checked in
    • RecordingImpl

      public RecordingImpl(String recordingID, String recordingState)
      Builds a representation of the recording.
      Parameters:
      recordingID - The ID of the recording.
      recordingState - The state of the recording. This should be defined from RecordingState.
  • Method Details