ElapsedTime
Elapsed time is the amount of time that has passed between two moments. It represents a non-negative duration and is used to quantify how long a process takes, how long since an event occurred, or how much time remains until a deadline.
Calculation typically relies on two timestamps: a start time and an end time. Elapsed time equals end_time
In programming and systems contexts, elapsed time is often measured using timers that avoid calendar changes.
Common considerations include clock resolution, leap seconds, and the distinction between elapsed time and wall-clock time.