Class AlterConfigsResult

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

@Evolving public class AlterConfigsResult extends Object
The result of the Admin.alterConfigs(Map) 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 alter configs operations succeed.
    Map<org.apache.kafka.common.config.ConfigResource,org.apache.kafka.common.KafkaFuture<Void>>
    Return a map from resources to futures which can be used to check the status of the operation on each resource.

    Methods inherited from class java.lang.Object

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

    • values

      public Map<org.apache.kafka.common.config.ConfigResource,org.apache.kafka.common.KafkaFuture<Void>> values()
      Return a map from resources to futures which can be used to check the status of the operation on each resource.
    • all

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