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

cn.wandersnail.common.http.callback.RequestCallback Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package cn.wandersnail.common.http.callback;

import okhttp3.Response;

/**
 * 请求结果回调
 * 

* date: 2019/8/23 15:22 * author: zengfansheng */ public interface RequestCallback { /** * 请求成功 * * @param response 原始响应 * @param convertedResponse 经过设置的转换器转换后的结果 */ void onSuccess(Response response, T convertedResponse); void onError(Throwable t); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy