kirktrue commented on code in PR #14406:
URL: https://github.com/apache/kafka/pull/14406#discussion_r1346278813


##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/events/BackgroundEventProcessor.java:
##########
@@ -0,0 +1,77 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.kafka.clients.consumer.internals.events;
+
+import org.apache.kafka.clients.consumer.ConsumerRebalanceListener;
+import org.apache.kafka.clients.consumer.internals.DefaultBackgroundThread;
+import org.apache.kafka.common.KafkaException;
+import org.apache.kafka.common.utils.LogContext;
+
+import java.util.concurrent.BlockingQueue;
+import java.util.concurrent.atomic.AtomicReference;
+
+/**
+ * An {@link EventProcessor} that is created and executes in the application 
thread for the purpose of processing
+ * {@link BackgroundEvent background events} generated by  {@link 
DefaultBackgroundThread the background thread}.
+ * Those events are generally of two types:
+ *
+ * <ul>
+ *     <li>Errors that occur in the background thread that need to be 
propagated to the application thread</li>
+ *     <li>{@link ConsumerRebalanceListener} callbacks that are to be executed 
on the application thread</li>
+ * </ul>
+ */
+public class BackgroundEventProcessor extends EventProcessor<BackgroundEvent> {
+
+    public BackgroundEventProcessor(final LogContext logContext,
+                                    final BlockingQueue<BackgroundEvent> 
backgroundEventQueue) {
+        super(logContext, backgroundEventQueue);
+    }
+
+    /**
+     * Process the events—if any—that were produced by the {@link 
DefaultBackgroundThread background thread}.
+     * It is possible that when processing the events that a given event will
+     * {@link ErrorBackgroundEvent represent an error directly}, or it could 
be that processing an event generates
+     * an error. In such cases, the processor will continue to process the 
remaining events. In this case, we
+     * provide the caller to provide a callback handler that "collects" the 
errors. We grab the first error that

Review Comment:
   This was an outdated comment. Fixed.



-- 
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

Reply via email to