接口 AsyncRequestCallback
public interface AsyncRequestCallback
Callback interface for code that operates on anAsyncClientHttpRequest. Allows to manipulate the request headers, and write to the request body.Used internally by the
AsyncRestTemplate, but also useful for application code.
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voiddoWithRequest(AsyncClientHttpRequest request)
方法详细资料
doWithRequest
void doWithRequest(AsyncClientHttpRequest request) throws IOException
Gets called byAsyncRestTemplate.execute(java.lang.String, org.springframework.http.HttpMethod, org.springframework.web.client.AsyncRequestCallback, org.springframework.web.client.ResponseExtractor<T>, java.lang.Object...)with an openedClientHttpRequest. Does not need to care about closing the request or about handling errors: this will all be handled by theRestTemplate.- 参数:
request- the active HTTP request- 抛出:
IOException- in case of I/O errors