Package org.apache.kafka.clients.admin
Class DeleteTopicsResult
- java.lang.Object
-
- org.apache.kafka.clients.admin.DeleteTopicsResult
-
@Evolving public class DeleteTopicsResult extends Object
The result of theAdmin.deleteTopics(Collection)
call. The API of this class is evolving, seeAdmin
for 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 topic deletions succeed.Map<String,KafkaFuture<Void>>
values()
Return a map from topic names to futures which can be used to check the status of individual deletions.
-
-
-
Method Detail
-
values
public Map<String,KafkaFuture<Void>> values()
Return a map from topic names 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 topic deletions succeed.
-
-