Skip to content

Commit 3b8e85a

Browse files
olavloitekolea2
authored andcommitted
---
yaml --- r: 24003 b: refs/heads/autosynth-kms c: 620d105 h: refs/heads/master i: 24001: d5b020e 23999: 2533ebb
1 parent dbe62f5 commit 3b8e85a

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

  • branches/autosynth-kms/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ refs/heads/autosynth-dialogflow: cb1ceeb3ec1a132d3096fc88d44b930a52130e18
132132
refs/heads/autosynth-errorreporting: 3f176c20b55dfaaa8fc32f28d82b31784b93e636
133133
refs/heads/autosynth-firestore: d48d82caace227856b6cd85ac30ee474528733ea
134134
refs/heads/autosynth-iot: 4025d1804241e74d54950a324dc4f667aeaad4b3
135-
refs/heads/autosynth-kms: 249d1636213be23efd68c92c08252e8b1ed930d6
135+
refs/heads/autosynth-kms: 620d105e6b574cfeeee04e413a157b7bd34ebc8b
136136
refs/heads/autosynth-language: c3d990dd34d81e7e935041e7147fb9dd27f8a557
137137
refs/heads/autosynth-os-login: 092fdbed6d5317948f92b708e9f50dedd89fc666
138138
refs/heads/autosynth-redis: 9e1fe503973c7b4a9ba26afb1fcddc2a57ba795a

branches/autosynth-kms/google-cloud-clients/google-cloud-spanner/src/main/java/com/google/cloud/spanner/DatabaseClient.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ public interface DatabaseClient {
8585

8686
/**
8787
* Returns a context in which a single read can be performed using {@link TimestampBound#strong()}
88-
* concurrency.
88+
* concurrency. This method will return a {@link ReadContext} that will not return the read
89+
* timestamp that was used by Cloud Spanner. If you want to be able to access the read timestamp,
90+
* you should use the method {@link #singleUseReadOnlyTransaction()}.
8991
*
9092
* <p>Example of single use.
9193
*
@@ -100,17 +102,18 @@ public interface DatabaseClient {
100102
ReadContext singleUse();
101103

102104
/**
103-
* Returns a context in which a single read can be performed at the given timestamp bound.
105+
* Returns a context in which a single read can be performed at the given timestamp bound. This
106+
* method will return a {@link ReadContext} that will not return the read timestamp that was used
107+
* by Cloud Spanner. If you want to be able to access the read timestamp, you should use the
108+
* method {@link #singleUseReadOnlyTransaction()}.
104109
*
105110
* <p>Example of single use with timestamp bound.
106111
*
107112
* <pre>{@code
108113
* long singerId = my_singer_id;
109114
* String column = "FirstName";
110-
* Struct row =
111-
* dbClient
112-
* .singleUse(TimestampBound.ofMaxStaleness(10, TimeUnit.SECONDS))
113-
* .readRow("Singers", Key.of(singerId), Collections.singleton(column));
115+
* Struct row = dbClient.singleUse(TimestampBound.ofMaxStaleness(10, TimeUnit.SECONDS))
116+
* .readRow("Singers", Key.of(singerId), Collections.singleton(column));
114117
* String firstName = row.getString(column);
115118
* }</pre>
116119
*

0 commit comments

Comments
 (0)