Package org.apache.kafka.clients.admin
Class DescribeReplicaLogDirsResult
java.lang.Object
org.apache.kafka.clients.admin.DescribeReplicaLogDirsResult
@Evolving public class DescribeReplicaLogDirsResult extends Object
The result of
Admin.describeReplicaLogDirs(Collection)
.
The API of this class is evolving, see Admin
for details.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DescribeReplicaLogDirsResult.ReplicaLogDirInfo
-
Method Summary
Modifier and Type Method Description KafkaFuture<Map<TopicPartitionReplica,DescribeReplicaLogDirsResult.ReplicaLogDirInfo>>
all()
Return a future which succeeds if log directory information of all replicas are availableMap<TopicPartitionReplica,KafkaFuture<DescribeReplicaLogDirsResult.ReplicaLogDirInfo>>
values()
Return a map from replica to future which can be used to check the log directory information of individual replicas
-
Method Details
-
values
public Map<TopicPartitionReplica,KafkaFuture<DescribeReplicaLogDirsResult.ReplicaLogDirInfo>> values()Return a map from replica to future which can be used to check the log directory information of individual replicas -
all
public KafkaFuture<Map<TopicPartitionReplica,DescribeReplicaLogDirsResult.ReplicaLogDirInfo>> all()Return a future which succeeds if log directory information of all replicas are available
-