Package org.apache.kafka.clients.admin
Class DescribeConfigsResult
- java.lang.Object
-
- org.apache.kafka.clients.admin.DescribeConfigsResult
-
@Evolving public class DescribeConfigsResult extends java.lang.Object
The result of theAdmin.describeConfigs(Collection)
call. The API of this class is evolving, seeAdmin
for details.
-
-
Constructor Summary
Constructors Constructor Description DescribeConfigsResult(java.util.Map<ConfigResource,KafkaFuture<Config>> futures)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KafkaFuture<java.util.Map<ConfigResource,Config>>
all()
Return a future which succeeds only if all the config descriptions succeed.java.util.Map<ConfigResource,KafkaFuture<Config>>
values()
Return a map from resources to futures which can be used to check the status of the configuration for each resource.
-
-
-
Constructor Detail
-
DescribeConfigsResult
public DescribeConfigsResult(java.util.Map<ConfigResource,KafkaFuture<Config>> futures)
-
-
Method Detail
-
values
public java.util.Map<ConfigResource,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 KafkaFuture<java.util.Map<ConfigResource,Config>> all()
Return a future which succeeds only if all the config descriptions succeed.
-
-