Class RunningExperiment

java.lang.Object
org.hobbit.core.data.status.QueuedExperiment
org.hobbit.core.data.status.RunningExperiment

public class RunningExperiment extends QueuedExperiment
This extension of a QueuedExperiment represents an experiment that is currently executed and may have additional information, e.g., the status of the execution.
Author:
Michael Röder (michael.roeder@uni-paderborn.de)
  • Field Details

    • status

      public String status
      The status of the execution of this experiment.
    • startTimestamp

      public long startTimestamp
      The point in time at which the experiment has been started. If it is 0, the experiment has not been started.
    • timestampOfAbortion

      public long timestampOfAbortion
      The point in time until the experiment will have to be finished.
  • Constructor Details

    • RunningExperiment

      public RunningExperiment()
  • Method Details

    • getStatus

      public String getStatus()
      Returns:
      the status
    • setStatus

      public void setStatus(String status)
      Parameters:
      status - the status to set
    • getStartTimestamp

      public long getStartTimestamp()
      Returns:
      the startTimestamp
    • setStartTimestamp

      public void setStartTimestamp(long startTimestamp)
      Parameters:
      startTimestamp - the startTimestamp to set
    • getTimestampOfAbortion

      public long getTimestampOfAbortion()
      Returns:
      the timestampOfAbortion
    • setTimestampOfAbortion

      public void setTimestampOfAbortion(long timestampOfAbortion)
      Parameters:
      timestampOfAbortion - the timestampOfAbortion to set