milleruntime commented on code in PR #2665:
URL: https://github.com/apache/accumulo/pull/2665#discussion_r939001697
##########
core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java:
##########
@@ -373,6 +384,23 @@ default void forEach(BiConsumer<? super Key,? super Value>
keyValueConsumer) {
}
}
+ /**
+ * Get the configured consistency level
+ *
+ * @return consistency level
+ * @since 2.1.0
+ */
+ public ConsistencyLevel getConsistencyLevel();
+
+ /**
+ * Set the desired consistency level for this scanner.
+ *
+ * @param level
+ * consistency level
+ * @since 2.1.0
+ */
+ public void setConsistencyLevel(ConsistencyLevel level);
+
Review Comment:
Using the term "snapshot" goes nicely with the new class `SnapshotTablet`. I
think this is beneficial since our users tend to be developers as well and will
probably see this new class.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]