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

com.kaka.util.Ticker Maven / Gradle / Ivy

package com.kaka.util;

public abstract class Ticker {
    private static final Ticker SYSTEM_TICKER = new Ticker() {
        public long read() {
            return System.nanoTime();
        }
    };

    protected Ticker() {
    }

    public abstract long read();

    public static Ticker systemTicker() {
        return SYSTEM_TICKER;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy