gr-m-9 commented on code in PR #13490: URL: https://github.com/apache/kafka/pull/13490#discussion_r1212948810
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/PrototypeAsyncConsumer.java: ########## @@ -96,6 +97,10 @@ private final Metrics metrics; private final long defaultApiTimeoutMs; + private final AtomicReference<CompletableFuture> activeFutures = new AtomicReference<>(); + private AtomicBoolean shouldWakeup = new AtomicBoolean(false); + private volatile boolean closed = false; + public PrototypeAsyncConsumer(Properties properties, Review Comment: readability of code is below expectations ... -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org