jkosh44 commented on a change in pull request #969: [WIP] Issue-967 URL: https://github.com/apache/fluo/pull/969#discussion_r152152031
########## File path: modules/api/src/main/java/org/apache/fluo/api/client/SnapshotBase.java ########## @@ -165,4 +167,22 @@ * @return transactions start timestamp allocated from Oracle. */ long getStartTimestamp(); + + default CompletableFuture<String> getsAsync(String row, Column column) { + return CompletableFuture.supplyAsync(() -> gets(row, column)); + } + + default CompletableFuture<String> getsAsync(String row, Column column, String defaultValue) { + return CompletableFuture.supplyAsync(() -> gets(row, column, defaultValue)); Review comment: I did see but I thought it was OK for the default method to be blocking as long as the implementations weren't blocking. I can remove the default implementation all together. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services