Class DeleteTopicsResult

java.lang.Object
org.oracle.okafka.clients.admin.DeleteTopicsResult

@Evolving public class DeleteTopicsResult extends Object
The result of the Admin.deleteTopics(Collection) 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 topic deletions succeed.
    Map<String,org.apache.kafka.common.KafkaFuture<Void>>
    Return a map from topic names to futures which can be used to check the status of individual deletions.

    Methods inherited from class java.lang.Object

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

    • values

      public Map<String,org.apache.kafka.common.KafkaFuture<Void>> values()
      Return a map from topic names to futures which can be used to check the status of individual deletions.
    • all

      public org.apache.kafka.common.KafkaFuture<Void> all()
      Return a future which succeeds only if all the topic deletions succeed.