Interface IProcessingUnitRuntimeTimeMeasurement
-
public interface IProcessingUnitRuntimeTimeMeasurementDefines the processing unit runtime time measurement.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetDuration()Get the duration in millisecondsjava.lang.StringgetDurationAsString()Get the formated durationjava.time.InstantgetStartTimestamp()Get the start time stampjava.time.InstantgetStopTimestamp()Get the stop time stamp
-
-
-
Method Detail
-
getStartTimestamp
java.time.Instant getStartTimestamp()
Get the start time stamp- Returns:
- the start time stamp
-
getStopTimestamp
java.time.Instant getStopTimestamp()
Get the stop time stamp- Returns:
- the stop time stamp
-
getDuration
long getDuration()
Get the duration in milliseconds- Returns:
- the duration
-
getDurationAsString
java.lang.String getDurationAsString()
Get the formated duration- Returns:
- the formated duration
-
-