Package org.springframework.web.client
Interface RequestCallback
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Callback interface for code that operates on a 
ClientHttpRequest.
 Allows manipulating the request headers, and write to the request body.
 Used internally by the RestTemplate, but also useful for
 application code. There several available factory methods:
 
- 
Method Summary
 
- 
Method Details
- 
doWithRequest
Gets called byRestTemplate.execute(java.lang.String, org.springframework.http.HttpMethod, org.springframework.web.client.RequestCallback, 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.- Parameters:
 request- the active HTTP request- Throws:
 IOException- in case of I/O errors
 
 -