Hi. Where can I find more information about the HT...
# ktor
f
Hi. Where can I find more information about the HTTP client design in ktor? I'm particularly curious on the reasons behind some of the decisions on Apache-based client, namely the design of the ApacheResponseConsumer and the motivation for the backendChannel.
e
@e5l
e
Hi, @Felix. You could mention me in any question about the ktor client. There is no client engine design documentation yet.
backendChannel
is used to buffer server response because
ByteChannel
has fixed size.
f
Thanks for the help. I will probably have lots of questions. Let me take a second look into the implementation.