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
Copy file name to clipboardExpand all lines: services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartDownloaderSubscriber.java
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,11 @@ public class MultipartDownloaderSubscriber implements Subscriber<AsyncResponseTr
61
61
*/
62
62
privatefinalAtomicIntegercompletedParts;
63
63
64
+
/**
65
+
* The total number of getObject calls made. This tracks how many times we've actually called getObject.
66
+
*/
67
+
privatefinalAtomicIntegergetObjectCallCount;
68
+
64
69
/**
65
70
* The subscription received from the publisher this subscriber subscribes to.
66
71
*/
@@ -95,6 +100,7 @@ public MultipartDownloaderSubscriber(S3AsyncClient s3, GetObjectRequest getObjec
0 commit comments