com.github.firelcw.codec.Decoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easy-http Show documentation
Show all versions of easy-http Show documentation
A simple HTTP client for Java
package com.github.firelcw.codec;
import com.github.firelcw.model.HttpResponse;
import java.lang.reflect.Type;
/**
* @author liaochongwei
* @date 2020/7/31 9:32
*/
public interface Decoder {
/**
* 响应解码
* @param response 响应参数
* @param type 返回值类型
* @return Object
*/
Object decode(HttpResponse response, Type type);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy