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

com.yy.androidlib.util.http.Profiler Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy