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

vip.ipav.okhttp.response.IResponseHandler Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package vip.ipav.okhttp.response;

import okhttp3.Response;

public interface IResponseHandler {

    void onSuccess(Response response);

    void onFailure(int statusCode, String error_msg);

    void onProgress(long currentBytes, long totalBytes);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy