Class DescribeConfigsResult

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

@Evolving public class DescribeConfigsResult extends Object
The result of the Admin.describeConfigs(Collection) call. The API of this class is evolving, see Admin for details.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    DescribeConfigsResult(Map<org.apache.kafka.common.config.ConfigResource,org.apache.kafka.common.KafkaFuture<Config>> futures)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.kafka.common.KafkaFuture<Map<org.apache.kafka.common.config.ConfigResource,Config>>
    all()
    Return a future which succeeds only if all the config descriptions succeed.
    Map<org.apache.kafka.common.config.ConfigResource,org.apache.kafka.common.KafkaFuture<Config>>
    Return a map from resources to futures which can be used to check the status of the configuration for each resource.

    Methods inherited from class java.lang.Object

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

    • DescribeConfigsResult

      protected DescribeConfigsResult(Map<org.apache.kafka.common.config.ConfigResource,org.apache.kafka.common.KafkaFuture<Config>> futures)
  • Method Details

    • values

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

      public org.apache.kafka.common.KafkaFuture<Map<org.apache.kafka.common.config.ConfigResource,Config>> all()
      Return a future which succeeds only if all the config descriptions succeed.