Package org.apache.kafka.clients.admin
Class DeleteConsumerGroupsResult
- java.lang.Object
 - 
- org.apache.kafka.clients.admin.DeleteConsumerGroupsResult
 
 
- 
@Evolving public class DeleteConsumerGroupsResult extends Object
The result of theAdmin.deleteConsumerGroups(Collection)call. The API of this class is evolving, seeAdminfor details. 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KafkaFuture<Void>all()Return a future which succeeds only if all the consumer group deletions succeed.Map<String,KafkaFuture<Void>>deletedGroups()Return a map from group id to futures which can be used to check the status of individual deletions. 
 - 
 
- 
- 
Method Detail
- 
deletedGroups
public Map<String,KafkaFuture<Void>> deletedGroups()
Return a map from group id to futures which can be used to check the status of individual deletions. 
- 
all
public KafkaFuture<Void> all()
Return a future which succeeds only if all the consumer group deletions succeed. 
 - 
 
 -