![JAR search and dependency download from the Maven repository](/logo.png)
com.yy.androidlib.util.http.Profiler Maven / Gradle / Ivy
package com.yy.androidlib.util.http;
/**
* Created by xuduo on 6/23/15.
*/
public interface Profiler {
enum Status{
SUCCESS(0),ERROR(-500),UNKNOW(1);
public int value;
Status(int code){
this.value = code;
}
}
void report(long startTime, String url, int status);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy