Package org.apache.kafka.clients.admin
Class CreateAclsResult
- java.lang.Object
-
- org.apache.kafka.clients.admin.CreateAclsResult
-
@Evolving public class CreateAclsResult extends Object
The result of theAdmin.createAcls(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<Void>
all()
Return a future which succeeds only if all the ACL creations succeed.Map<AclBinding,KafkaFuture<Void>>
values()
Return a map from ACL bindings to futures which can be used to check the status of the creation of each ACL binding.
-
-
-
Method Detail
-
values
public Map<AclBinding,KafkaFuture<Void>> values()
Return a map from ACL bindings to futures which can be used to check the status of the creation of each ACL binding.
-
all
public KafkaFuture<Void> all()
Return a future which succeeds only if all the ACL creations succeed.
-
-