top | item 32400170

(no title)

alectic | 3 years ago

Streamed-response use cases get weird/complicated if you have to return the response.

discuss

order

deathanatos|3 years ago

Not necessarily? The type used for Response can include a "body" type that supports streaming. E.g., body: AsyncRead in Rust. In Go I think it would resemble a channel that emitted the contents of the body.

(As a library, though, you'd also want to make the simple non-streaming case of "just return this blob of bytes" simple for the consumer, too.)

masklinn|3 years ago

Sure but is that the usual / default? Why not have a second adapter?