Package com.netflix.genie.common.util
Class TimeUtils
java.lang.Object
com.netflix.genie.common.util.TimeUtils
Utility methods for dealing with time. Particularly duration.
- Since:
- 3.0.0
- 
Method SummaryModifier and TypeMethodDescriptionstatic DurationgetDuration(Instant started, Instant finished) Get the duration between when something was started and finished.
- 
Method Details- 
getDurationGet the duration between when something was started and finished.- Parameters:
- started- The start time. Can be null will automatically set the duration to 0
- finished- The finish time. If null will use (current time - started time) to get the duration
- Returns:
- The duration or zero if no duration
 
 
-