All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.rdrei.android.buildtimetracker.util.Clock.groovy Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
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