org.smartboot.http.client.ResponseHandler Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2017-2021, org.smartboot. All rights reserved.
* project name: smart-http
* file name: ResponseHandler.java
* Date: 2021-07-25
* Author: sandao ([email protected])
******************************************************************************/
package org.smartboot.http.client;
import org.smartboot.http.common.Handler;
/**
* @author 三刀([email protected])
* @version V1.0 , 2021/7/25
*/
public abstract class ResponseHandler implements Handler {
@Override
public final void onClose(AbstractResponse request) {
}
}