Package org.apache.kafka.clients.admin
Class AlterClientQuotasResult
- java.lang.Object
 - 
- org.apache.kafka.clients.admin.AlterClientQuotasResult
 
 
- 
@Evolving public class AlterClientQuotasResult extends Object
The result of theAdmin.alterClientQuotas(Collection, AlterClientQuotasOptions)call. The API of this class is evolving, seeAdminfor details. 
- 
- 
Constructor Summary
Constructors Constructor Description AlterClientQuotasResult(Map<ClientQuotaEntity,KafkaFuture<Void>> futures)Maps an entity to its alteration result. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KafkaFuture<Void>all()Returns a future which succeeds only if all quota alterations succeed.Map<ClientQuotaEntity,KafkaFuture<Void>>values()Returns a map from quota entity to a future which can be used to check the status of the operation. 
 - 
 
- 
- 
Constructor Detail
- 
AlterClientQuotasResult
public AlterClientQuotasResult(Map<ClientQuotaEntity,KafkaFuture<Void>> futures)
Maps an entity to its alteration result.- Parameters:
 futures- maps entity to its alteration result
 
 - 
 
- 
Method Detail
- 
values
public Map<ClientQuotaEntity,KafkaFuture<Void>> values()
Returns a map from quota entity to a future which can be used to check the status of the operation. 
- 
all
public KafkaFuture<Void> all()
Returns a future which succeeds only if all quota alterations succeed. 
 - 
 
 -