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

com.taobao.drc.clusterclient.util.Time Maven / Gradle / Ivy

There is a newer version: 5.0.0.1.beta
Show newest version
package com.taobao.drc.clusterclient.util;

/**
 * @author yangyang
 * @since 2017/7/13
 */
public interface Time {
    Time SYSTEM = new Time() {
        @Override
        public long millis() {
            return System.currentTimeMillis();
        }
    };

    long millis();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy