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 ofAdmin.describeReplicaLogDirs(Collection). The API of this class is evolving, seeAdminfor details. 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDescribeReplicaLogDirsResult.ReplicaLogDirInfo 
- 
Method Summary
All Methods Instance Methods Concrete Methods 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 Detail
- 
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 
 - 
 
 -