Skip to content

Commit

Permalink
address some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
liangyepianzhou committed Oct 26, 2023
1 parent cd1b934 commit 3b03fad
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,7 @@ public interface TableView<T> extends Closeable {
*/
CompletableFuture<Void> closeAsync();


/**
*
* Refresh the table view with the latest data in the topic, ensuring that all subsequent reads are based on the refreshed data.
*
* Example usage:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ private void readAllExistingMessages(Reader<T> reader, CompletableFuture<Void> f
future.completeExceptionally(ex);
return null;
});
} else if (readTailMessages){
} else if (readTailMessages) {
// Reached the end
long endTime = System.nanoTime();
long durationMillis = TimeUnit.NANOSECONDS.toMillis(endTime - startTime);
Expand Down

0 comments on commit 3b03fad

Please sign in to comment.