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

com.github.dadiyang.httpinvoker.requestor.ResponseProcessor Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.dadiyang.httpinvoker.requestor;

import java.lang.reflect.Method;

/**
 * process response after got response.
 * 

* we will be able to handle result before method return. * * @author dadiyang * date 2019/2/21 */ public interface ResponseProcessor { /** * processing response before method return * * @param response response * @param method the proxied method * @return the proxied method's return value */ Object process(HttpResponse response, Method method); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy