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

cn.majingjing.http.client.response.callback.EmptyHttpCallBack Maven / Gradle / Ivy

The newest version!
package cn.majingjing.http.client.response.callback;

import cn.majingjing.http.client.request.HttpRequest;
import cn.majingjing.http.client.response.HttpResponse;

/**
 * 请求回调示例
 *
 * @author MaMarion
 * @date 2020/4/24
 */
public class EmptyHttpCallBack implements HttpCallBack {

    @Override
    public void onComplete(HttpRequest req, HttpResponse response) {
        System.out.println(req);
        System.out.println(response.asString());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy