Class DeleteConsumerGroupOffsetsResult

java.lang.Object
org.apache.kafka.clients.admin.DeleteConsumerGroupOffsetsResult

@Evolving public class DeleteConsumerGroupOffsetsResult extends Object
The result of the Admin.deleteConsumerGroupOffsets(String, Set) call. The API of this class is evolving, see Admin for details.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.kafka.common.KafkaFuture<Void>
    all()
    Return a future which succeeds only if all the deletions succeed.
    org.apache.kafka.common.KafkaFuture<Void>
    partitionResult(org.apache.kafka.common.TopicPartition partition)
    Return a future which can be used to check the result for a given partition.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • partitionResult

      public org.apache.kafka.common.KafkaFuture<Void> partitionResult(org.apache.kafka.common.TopicPartition partition)
      Return a future which can be used to check the result for a given partition.
    • all

      public org.apache.kafka.common.KafkaFuture<Void> all()
      Return a future which succeeds only if all the deletions succeed. If not, the first partition error shall be returned.