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