https://kotlinlang.org logo
Title
s

Satyam Agarwal

06/04/2022, 12:09 PM
Hei. Can someone elaborate on the difference between HttpSendPipeline and HttpRequestPipeline ?
[HttpClient] Pipeline used for executing [HttpRequest].
and
[HttpClient] Pipeline used for sending [HttpRequest] to remote server.
is still kind of vague for me.
a

Aleksei Tirman [JB]

06/06/2022, 10:04 AM
The
HttpRequestPipeline
is used for preparing a request before sending that includes modifications of original request, body transformation, encoding a request for sending. During the execution of the
HttpSendPipeline
a request is sent over the network.