-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow large file download and upload using the Reactive REST Client. #21440
Comments
sending done in #21569 |
receiving multipart files as Multi is troublesome. |
it's reasonable, and then back-pressure will apply from the file system. |
TBH I don't remember if download wasn't implemented too. CC @Sgitario |
@Sgitario you have fixed various things around this, correct? |
Receiving files using |
Okay, thanks |
@geoand Is this issue still valid? |
I think so |
Description
Allow large file downloads and uploads using the Reactive REST Client.
Large means that the file size does not fit in memory and back-pressure must be used.
Typically it would allow passing a Multi as a parameter or receiving a Multi.
Multi<Byte>
as fileMulti<Byte>
The text was updated successfully, but these errors were encountered: