You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Use the bytes feature to upload files from the browser to the server using request stream.
Describe the solution you'd like
Connect for Web : Add support to request stream using ReadableStream instance being passed to the request body.
Describe alternatives you've considered
If you've proposed a solution, are there any alternatives? Why are they worse
than your preferred approach?
Using unary. It's worse because large files it quite loads the client and server memory. Also there is no way to implement resuming upload when using unary calls.
The text was updated successfully, but these errors were encountered:
It might be worth giving it a try with the full implementation of the Transport (instead of the slimmed down one from @bufbuild/connect-web). You can see an example here: #577 (comment)
Is your feature request related to a problem? Please describe.
Use the bytes feature to upload files from the browser to the server using request stream.
Describe the solution you'd like
Connect for Web : Add support to request stream using
ReadableStream
instance being passed to the requestbody
.Describe alternatives you've considered
If you've proposed a solution, are there any alternatives? Why are they worse
than your preferred approach?
Using unary. It's worse because large files it quite loads the client and server memory. Also there is no way to implement resuming upload when using unary calls.
The text was updated successfully, but these errors were encountered: