nowMicros method
The current number of microseconds since the "Unix epoch" 1970-01-01T00:00:00Z (UTC).
Implementation
int nowMicros() {
return nowNanos() ~/ Clock.nanosecondsPerMicrosecond;
}
The current number of microseconds since the "Unix epoch" 1970-01-01T00:00:00Z (UTC).
int nowMicros() {
return nowNanos() ~/ Clock.nanosecondsPerMicrosecond;
}