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

cn.majingjing.http.client.response.handle.DataHandler Maven / Gradle / Ivy

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

/**
 * 数据处理接口
 *
 * @author MaMarion
 * @date 2020/4/24
 */
public interface DataHandler {

    /**
     * Convert body to T
     *
     * @param body response body byte[]
     * @return T
     */
    T handle(byte[] body);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy