Package org.apache.kafka.clients.admin
Class DeleteConsumerGroupOffsetsResult
- java.lang.Object
 - 
- org.apache.kafka.clients.admin.DeleteConsumerGroupOffsetsResult
 
 
- 
@Evolving public class DeleteConsumerGroupOffsetsResult extends Object
The result of theAdmin.deleteConsumerGroupOffsets(String, Set)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 deletions succeed.KafkaFuture<Void>partitionResult(TopicPartition partition)Return a future which can be used to check the result for a given partition. 
 - 
 
- 
- 
Method Detail
- 
partitionResult
public KafkaFuture<Void> partitionResult(TopicPartition partition)
Return a future which can be used to check the result for a given partition. 
- 
all
public KafkaFuture<Void> all()
Return a future which succeeds only if all the deletions succeed. If not, the first partition error shall be returned. 
 - 
 
 -