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

com.gojek.courier.utils.Clock.kt Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package com.gojek.courier.utils

import androidx.annotation.RestrictTo

@RestrictTo(RestrictTo.Scope.LIBRARY)
class Clock {
    fun currentTimeMillis(): Long {
        return System.currentTimeMillis()
    }

    fun nanoTime(): Long {
        return System.nanoTime()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy