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: google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/readrows/ReadRowsResumptionStrategy.java
+13-12
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,8 @@ public StreamResumptionStrategy<ReadRowsRequest, RowT> createNew() {
60
60
publicvoidonProgress(RowTresponse) {
61
61
// Last key can come from both the last processed row key and a synthetic row marker. The
62
62
// synthetic row marker is emitted when the server has read a lot of data that was filtered out.
63
-
// So it can trim the start of the scan, but does not contribute to the row limit.
63
+
// The row marker can be used to trim the start of the scan, but does not contribute to the row
64
+
// limit.
64
65
lastKey = rowAdapter.getKey(response);
65
66
if (!rowAdapter.isScanMarkerRow(response)) {
66
67
// Only real rows count towards the rows limit.
@@ -79,15 +80,15 @@ public void onProgress(RowT response) {
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/readrows/ReadRowsRetryCompletedCallable.java
+3-2
Original file line number
Diff line number
Diff line change
@@ -28,8 +28,9 @@
28
28
* an OK response.
29
29
*
30
30
* <p>This callable works in tandem with {@link ReadRowsResumptionStrategy}, which will send a
31
-
* {@link #FULFILLED_REQUEST_MARKER} to be processed by this callable. Which will promptly notify
32
-
* the {@link ResponseObserver} that the stream has been successfully compeleted.
31
+
* {@link #FULFILLED_REQUEST_MARKER} to be processed by this callable. Upon receiving the {@link
32
+
* #FULFILLED_REQUEST_MARKER}, this callable will promptly notify the {@link ResponseObserver} that
33
+
* the stream has been successfully compeleted.
33
34
*
34
35
* <p>This class is considered an internal implementation detail and not meant to be used by
0 commit comments