
net.rdrei.android.buildtimetracker.util.Clock.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin Show documentation
Show all versions of gradle-plugin Show documentation
Gradle plugin which tracks your build times.
package net.rdrei.android.buildtimetracker.util
class Clock {
long startTimeInMs
Clock() {
this(System.currentTimeMillis())
}
Clock(long startTimeInMs) {
this.startTimeInMs = startTimeInMs
}
long getTimeInMs() {
return System.currentTimeMillis() - startTimeInMs
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy