cadonna commented on code in PR #19544:
URL: https://github.com/apache/kafka/pull/19544#discussion_r2056345054
##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/StreamsRebalanceData.java:
##########
@@ -346,11 +349,24 @@ public Map<HostInfo, List<TopicPartition>>
partitionsByHost() {
return partitionsByHost.get();
}
+ /** For the current stream thread to request a shutdown of all
applications. */
public void requestShutdown() {
shutdownRequested.set(true);
}
+ /** True of the current stream thread requested a shutdown of all
applications. */
Review Comment:
```suggestion
/** True if the current stream thread requested a shutdown of all
Streams clients belonging to the same application. */
```
##########
clients/src/main/java/org/apache/kafka/clients/consumer/internals/StreamsRebalanceData.java:
##########
@@ -346,11 +349,24 @@ public Map<HostInfo, List<TopicPartition>>
partitionsByHost() {
return partitionsByHost.get();
}
+ /** For the current stream thread to request a shutdown of all
applications. */
Review Comment:
```suggestion
/** For the current stream thread to request a shutdown of all Streams
clients belonging to the same applications. */
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]