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

com.feingto.cloud.kit.http.ClientCallBack Maven / Gradle / Ivy

There is a newer version: 2.5.2.RELEASE
Show newest version
package com.feingto.cloud.kit.http;

/**
 * 客户端异步调用回调
 *
 * @author longfei
 */
public interface ClientCallBack {
    /**
     * 成功响应
     *
     * @param response ClientResponse
     */
    void onSuccess(ClientResponse response);

    /**
     * 请求失败
     *
     * @param e Exception
     */
    void onFailure(Exception e);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy