Skip to content

Commit 6b5c9cb

Browse files
rahulKQLigorbernstein2
authored andcommitted
---
yaml --- r: 32375 b: refs/heads/autosynth-errorreporting c: 2313bb5 h: refs/heads/master i: 32373: 58692cb 32371: 5c42e5e 32367: 960807f
1 parent bc145c2 commit 6b5c9cb

2 files changed

Lines changed: 20 additions & 4 deletions

File tree

  • branches/autosynth-errorreporting/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ refs/heads/autosynth-bigtable-admin: 6379a2bc712f2736c83de0e009b4d26da4fa82ca
129129
refs/heads/autosynth-containeranalysis: 18d210f81f17cf74864d0db2c29e834302f74f2a
130130
refs/heads/autosynth-datastore: f1efc3dc465174f41041acd56cf29badcec3e5bd
131131
refs/heads/autosynth-dialogflow: 73974cc32e5212aec0126472e0bc1442886fedaf
132-
refs/heads/autosynth-errorreporting: 06d6685b4c3eedcc4d513b47e6531859a08e07b2
132+
refs/heads/autosynth-errorreporting: 2313bb545e4bb4ab74868033e5a11729f3cd00f7
133133
refs/heads/autosynth-firestore: 983c75e4fb1076502c8cac73ef0538bdb10884f3
134134
refs/heads/autosynth-iot: 4025d1804241e74d54950a324dc4f667aeaad4b3
135135
refs/heads/autosynth-kms: 6b65b0f34c12d141031c7288cdc01e550212d0f6

branches/autosynth-errorreporting/google-cloud-clients/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/BigtableDataClient.java

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -513,9 +513,16 @@ public <RowT> UnaryCallable<Query, RowT> readRowCallable(RowAdapter<RowT> rowAda
513513
* .range("[START KEY]", "[END KEY]")
514514
* .filter(FILTERS.qualifier().regex("[COLUMN PREFIX].*"));
515515
*
516-
* // Iterator style
517516
* try {
518-
* for(Row row : bigtableDataClient.readRows(query)) {
517+
* ServerStream<Row> stream = bigtableDataClient.readRows(query);
518+
* int count = 0;
519+
*
520+
* // Iterator style
521+
* for (Row row : stream) {
522+
* if (++count > 10) {
523+
* stream.cancel();
524+
* break;
525+
* }
519526
* // Do something with row
520527
* }
521528
* } catch (NotFoundException e) {
@@ -548,8 +555,17 @@ public ServerStream<Row> readRows(Query query) {
548555
* .filter(FILTERS.qualifier().regex("[COLUMN PREFIX].*"));
549556
*
550557
* bigtableDataClient.readRowsAsync(query, new ResponseObserver<Row>() {
551-
* public void onStart(StreamController controller) { }
558+
* StreamController controller;
559+
* int count = 0;
560+
*
561+
* public void onStart(StreamController controller) {
562+
* this.controller = controller;
563+
* }
552564
* public void onResponse(Row row) {
565+
* if (++count > 10) {
566+
* controller.cancel();
567+
* return;
568+
* }
553569
* // Do something with Row
554570
* }
555571
* public void onError(Throwable t) {

0 commit comments

Comments
 (0)