TimeMark
@ExperimentalTime abstract class TimeMark
Represents a time point notched on a particular TimeSource. Remains bound to the time source it was taken from and allows querying for the duration of time elapsed from that point (see the function elapsedNow).
Constructors
<init>
Represents a time point notched on a particular TimeSource. Remains bound to the time source it was taken from and allows querying for the duration of time elapsed from that point (see the function elapsedNow).
TimeMark()
Functions
elapsedNow
Returns the amount of time passed from this mark measured with the time source from which this mark was taken.
abstract fun elapsedNow(): Duration
hasNotPassedNow
Returns false if this time mark has not passed according to the time source from which this mark was taken.
fun hasNotPassedNow(): Boolean
hasPassedNow
Returns true if this time mark has passed according to the time source from which this mark was taken.
fun hasPassedNow(): Boolean