Admin.electLeaders(ElectionType, Set, ElectLeadersOptions)
.@InterfaceStability.Evolving @Deprecated public class ElectPreferredLeadersResult extends Object
Admin.electPreferredLeaders(Collection, ElectPreferredLeadersOptions)
The API of this class is evolving, see Admin
for details.Modifier and Type | Method and Description |
---|---|
KafkaFuture<Void> |
all()
Deprecated.
Return a future which succeeds if all the topic elections succeed.
|
KafkaFuture<Void> |
partitionResult(TopicPartition partition)
Deprecated.
Get the result of the election for the given
partition . |
KafkaFuture<Set<TopicPartition>> |
partitions()
Deprecated.
Get a future for the topic partitions for which a leader election
was attempted.
|
public KafkaFuture<Void> partitionResult(TopicPartition partition)
partition
.
If there was not an election triggered for the given partition
, the
returned future will complete with an error.public KafkaFuture<Set<TopicPartition>> partitions()
Get a future for the topic partitions for which a leader election was attempted. A partition will be present in this result if an election was attempted even if the election was not successful.
This method is provided to discover the partitions attempted when
Admin.electPreferredLeaders(Collection)
is called
with a null partitions
argument.
public KafkaFuture<Void> all()