Hei. Can someone elaborate on the difference betwe...
# ktor
s
Hei. Can someone elaborate on the difference between HttpSendPipeline and HttpRequestPipeline ?
Copy code
[HttpClient] Pipeline used for executing [HttpRequest].
and
Copy code
[HttpClient] Pipeline used for sending [HttpRequest] to remote server.
is still kind of vague for me.
a
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.