is this the only way to deal with streaming using ...
# ktor
a
is this the only way to deal with streaming using ktor client?
Copy code
HttpStatement.execute() { httpResp -> 
    // access body as stream
}
Is there a way to do this and manage the stream ourselves rather than go through the safe abstraction provided where the stream can only be accessed in the block? Thanks