File tree Expand file tree Collapse file tree
branches/logging-alpha/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ refs/heads/compute-alpha: 969cba2627f1d53d352cc4a5ffe0879dacf65e6c
1212refs/heads/dns-alpha: 2f90e7e338349287ace33375896907af0f032ca1
1313refs/heads/dns-alpha-batch: 17442b07867021b85d0452f5f3eda29a3413288f
1414refs/heads/gcs-nio: 283aeaf15efdcf3621eb6859f05e55ad7764375d
15- refs/heads/logging-alpha: 76e3b3ef5ead06e8741d887ca8c337451470692a
15+ refs/heads/logging-alpha: 0d794eaf55f61ad3156d3ecbce9b64562e870868
1616refs/tags/v0.1.0: a615317f7424ed58621b1f65d5c4d8cbbe8a6ed8
1717refs/tags/v0.1.1: 7a7f6985fe465e9dd6a075af55493f42b4933be0
1818refs/tags/v0.1.2: 3eb3fe866ba22487686048f45d927b8c8638ea3f
Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ public abstract class ReadOption implements Serializable {
3030 private static final long serialVersionUID = -4406964829189800528L ;
3131
3232 /**
33- * Specifies eventual consistency for reads from Datastore.
33+ * Specifies eventual consistency for reads from Datastore. Lookups and ancestor queries using
34+ * this option permit Datastore to return stale results.
3435 */
3536 public static final class EventualConsistency extends ReadOption {
3637
@@ -50,7 +51,8 @@ public boolean isEventual() {
5051 private ReadOption () {}
5152
5253 /**
53- * Returns a {@code ReadOption} that specifies eventual consistency.
54+ * Returns a {@code ReadOption} that specifies eventual consistency, allowing Datastore to return
55+ * stale results from gets, fetches, and ancestor queries.
5456 */
5557 public static EventualConsistency eventualConsistency () {
5658 return new EventualConsistency (true );
You can’t perform that action at this time.
0 commit comments