|
HttpClientResponse vResponse = res.result(); |
Hi
Response should be paused until the subscriber (ReadStreamPublisher) requests data via (stream.fetch(n) which automatically resumes) else you are having the chance of missing data. This is visible when you are fetching big files from s3
aws-sdk/src/main/java/io/reactiverse/awssdk/VertxNioAsyncHttpClient.java
Line 86 in 883755f
Hi
Response should be paused until the subscriber (ReadStreamPublisher) requests data via (stream.fetch(n) which automatically resumes) else you are having the chance of missing data. This is visible when you are fetching big files from s3