com.taobao.drc.clusterclient.util.Time Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of consumer-core Show documentation
Show all versions of consumer-core Show documentation
The java consumer core component for Data Transmission Service
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();
}