hachikuji commented on a change in pull request #9732: URL: https://github.com/apache/kafka/pull/9732#discussion_r541221553
########## File path: core/src/main/scala/kafka/common/InterBrokerSendThread.scala ########## @@ -51,22 +53,34 @@ abstract class InterBrokerSendThread(name: String, awaitShutdown() } - override def doWork(): Unit = { - var now = time.milliseconds() + def sendRequest(request: RequestAndCompletionHandler): Unit = { + sendRequests(Seq(request)) + } - generateRequests().foreach { request => + def sendRequests(requests: Iterable[RequestAndCompletionHandler]): Unit = { + inboundQueue.addAll(requests.asJavaCollection) Review comment: Yeah, I was going to change this to use `add` anyway to make the expectation clearer. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org