Class 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 Detail

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

      • RunningExperiment

        public RunningExperiment()
    • Method Detail

      • 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