Package org.apache.kafka.clients.admin
Class DescribeConfigsResult
- java.lang.Object
-
- org.apache.kafka.clients.admin.DescribeConfigsResult
-
@Evolving public class DescribeConfigsResult extends Object
The result of theAdmin.describeConfigs(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<Map<ConfigResource,Config>>
all()
Return a future which succeeds only if all the config descriptions succeed.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.
-
-
-
Method Detail
-
values
public 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<Map<ConfigResource,Config>> all()
Return a future which succeeds only if all the config descriptions succeed.
-
-