Package org.apache.kafka.clients.admin
Class UpdateFeaturesResult
- java.lang.Object
-
- org.apache.kafka.clients.admin.UpdateFeaturesResult
-
public class UpdateFeaturesResult extends Object
The result of theAdmin.updateFeatures(Map, UpdateFeaturesOptions)
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 if all the feature updates succeed.Map<String,KafkaFuture<Void>>
values()
-
-
-
Method Detail
-
values
public Map<String,KafkaFuture<Void>> values()
-
all
public KafkaFuture<Void> all()
Return a future which succeeds if all the feature updates succeed.
-
-