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 Summary
Modifier and TypeMethodDescriptionstatic Duration
getDuration
(Instant started, Instant finished) Get the duration between when something was started and finished.
-
Method Details
-
getDuration
Get the duration between when something was started and finished.- Parameters:
started
- The start time. Can be null will automatically set the duration to 0finished
- The finish time. If null will use (current time - started time) to get the duration- Returns:
- The duration or zero if no duration
-