package ran.quzitech.rnutils.http;


public interface IHandler<T> {

    /**
     * @param notTimeOut true/没有超时 false/超时
     * @param t          Response T
     */
    public void getResponse(boolean notTimeOut, T t, ResponseMessage message, String content);

}
