nowNanos method
The current number of nanoseconds since the "Unix epoch" 1970-01-01T00:00:00Z (UTC).
Implementation
int nowNanos() {
return startTime.microsecondsSinceEpoch * Clock.nanosecondsPerMicrosecond + _durationNanos();
}
The current number of nanoseconds since the "Unix epoch" 1970-01-01T00:00:00Z (UTC).
int nowNanos() {
return startTime.microsecondsSinceEpoch * Clock.nanosecondsPerMicrosecond + _durationNanos();
}