Package org.hobbit.core.data.status
Class RunningExperiment
java.lang.Object
org.hobbit.core.data.status.QueuedExperiment
org.hobbit.core.data.status.RunningExperiment
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 Summary
FieldsModifier and TypeFieldDescriptionlongThe point in time at which the experiment has been started.The status of the execution of this experiment.longThe point in time until the experiment will have to be finished.Fields inherited from class org.hobbit.core.data.status.QueuedExperiment
benchmarkName, benchmarkUri, canBeCanceled, challengeTaskUri, challengeUri, dateOfExecution, experimentId, systemName, systemUri -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlonglongvoidsetStartTimestamp(long startTimestamp) voidvoidsetTimestampOfAbortion(long timestampOfAbortion) Methods inherited from class org.hobbit.core.data.status.QueuedExperiment
getBenchmarkName, getBenchmarkUri, getChallengeTaskUri, getChallengeUri, getExperimentId, getSystemName, getSystemUri, isCanBeCanceled, setBenchmarkName, setBenchmarkUri, setCanBeCanceled, setChallengeTaskUri, setChallengeUri, setExperimentId, setSystemName, setSystemUri
-
Field Details
-
status
The status of the execution of this experiment. -
startTimestamp
public long startTimestampThe point in time at which the experiment has been started. If it is 0, the experiment has not been started. -
timestampOfAbortion
public long timestampOfAbortionThe point in time until the experiment will have to be finished.
-
-
Constructor Details
-
RunningExperiment
public RunningExperiment()
-
-
Method Details
-
getStatus
- Returns:
- the status
-
setStatus
- 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
-