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
{{ message }}
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
Guests currently expect the runtime to finish writing the the entire request before reading it, and it would be very helpful to have support for streaming a response body.
One option would be an additional host function that would use the native HTTP library to read chunked responses, write the chunks in the memory, then populate the pointers representing the chunk start and size.
Then, the guest module would read until the size is not zero.
The text was updated successfully, but these errors were encountered:
Guests currently expect the runtime to finish writing the the entire request before reading it, and it would be very helpful to have support for streaming a response body.
One option would be an additional host function that would use the native HTTP library to read chunked responses, write the chunks in the memory, then populate the pointers representing the chunk start and size.
Then, the guest module would read until the size is not zero.
The text was updated successfully, but these errors were encountered: