Package org.apache.kafka.clients.admin
Class AlterConfigsResult
- java.lang.Object
 - 
- org.apache.kafka.clients.admin.AlterConfigsResult
 
 
- 
@Evolving public class AlterConfigsResult extends Object
The result of theAdmin.alterConfigs(Map)call. The API of this class is evolving, seeAdminfor 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 alter configs operations succeed.Map<ConfigResource,KafkaFuture<Void>>values()Return a map from resources to futures which can be used to check the status of the operation on each resource. 
 - 
 
- 
- 
Method Detail
- 
values
public Map<ConfigResource,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 KafkaFuture<Void> all()
Return a future which succeeds only if all the alter configs operations succeed. 
 - 
 
 -