Class DeleteTopicsResult
java.lang.Object
org.apache.kafka.clients.admin.DeleteTopicsResult
The result of the
Admin.deleteTopics(Collection) call.Method Summary
Modifier and TypeMethodDescriptionall()Map<Uuid, KafkaFuture<Void>> Use whenAdmin.deleteTopics(TopicCollection, DeleteTopicsOptions)used a TopicIdCollectionMap<String, KafkaFuture<Void>> Use whenAdmin.deleteTopics(TopicCollection, DeleteTopicsOptions)used a TopicNameCollection
Method Details
topicIdValues
Use whenAdmin.deleteTopics(TopicCollection, DeleteTopicsOptions)used a TopicIdCollection- Returns:
- a map from topic IDs to futures which can be used to check the status of individual deletions if the deleteTopics request used topic IDs. Otherwise return null.
topicNameValues
Use whenAdmin.deleteTopics(TopicCollection, DeleteTopicsOptions)used a TopicNameCollection- Returns:
- a map from topic names to futures which can be used to check the status of individual deletions if the deleteTopics request used topic names. Otherwise return null.
all
- Returns:
- a future which succeeds only if all the topic deletions succeed.