org.xutils.http.app.RequestInterceptListener

package org.xutils.http.app;



import org.xutils.http.request.UriRequest;



/**

* @author 注释者:王教成

* @version 注释版:1.0.0

* 请求拦截监听器接口,拦截请求响应(在后台线程工作)

* <p>

* 用法:请求的callback参数同时实现RequestInterceptListener

*/

public interface RequestInterceptListener {

/**

    * 之前请求

    * @param request Uri请求参数

    * @throws Throwable 抛出异常

    */

   void beforeRequest(UriRequest request) throws Throwable;

   /**

    * 之后请求

    * @param request Uri请求参数

    * @throws Throwable 抛出异常

    */

   void afterRequest(UriRequest request) throws Throwable;

}

org.xutils.http.app.RequestInterceptListener