Uses of Class
io.vertx.kafka.client.common.PartitionInfo
-
-
Uses of PartitionInfo in io.vertx.kafka.client.common
Methods in io.vertx.kafka.client.common that return PartitionInfo Modifier and Type Method Description PartitionInfo
PartitionInfo. setInSyncReplicas(List<Node> inSyncReplicas)
Set the subset of the replicas that are in syncPartitionInfo
PartitionInfo. setLeader(Node leader)
Set the node id of the node currently acting as a leaderPartitionInfo
PartitionInfo. setPartition(int partition)
Set the partition idPartitionInfo
PartitionInfo. setReplicas(List<Node> replicas)
Set the complete set of replicas for this partitionPartitionInfo
PartitionInfo. setTopic(String topic)
Set the topic name -
Uses of PartitionInfo in io.vertx.kafka.client.consumer
Methods in io.vertx.kafka.client.consumer that return types with arguments of type PartitionInfo Modifier and Type Method Description Future<Map<String,List<PartitionInfo>>>
KafkaConsumer. listTopics()
Get metadata about partitions for all topics that the user is authorized to view.Future<List<PartitionInfo>>
KafkaConsumer. partitionsFor(String topic)
Get metadata about the partitions for a given topic. -
Uses of PartitionInfo in io.vertx.kafka.client.producer
Methods in io.vertx.kafka.client.producer that return types with arguments of type PartitionInfo Modifier and Type Method Description Future<List<PartitionInfo>>
KafkaProducer. partitionsFor(String topic)
Get the partition metadata for the give topic. -
Uses of PartitionInfo in io.vertx.reactivex.kafka.client.consumer
Methods in io.vertx.reactivex.kafka.client.consumer that return types with arguments of type PartitionInfo Modifier and Type Method Description Future<List<PartitionInfo>>
KafkaConsumer. partitionsFor(String topic)
Get metadata about the partitions for a given topic.Single<List<PartitionInfo>>
KafkaConsumer. rxPartitionsFor(String topic)
Get metadata about the partitions for a given topic. -
Uses of PartitionInfo in io.vertx.reactivex.kafka.client.producer
Methods in io.vertx.reactivex.kafka.client.producer that return types with arguments of type PartitionInfo Modifier and Type Method Description Future<List<PartitionInfo>>
KafkaProducer. partitionsFor(String topic)
Get the partition metadata for the give topic.Single<List<PartitionInfo>>
KafkaProducer. rxPartitionsFor(String topic)
Get the partition metadata for the give topic. -
Uses of PartitionInfo in io.vertx.rxjava3.kafka.client.consumer
Methods in io.vertx.rxjava3.kafka.client.consumer that return types with arguments of type PartitionInfo Modifier and Type Method Description Single<List<PartitionInfo>>
KafkaConsumer. partitionsFor(String topic)
Get metadata about the partitions for a given topic.Single<List<PartitionInfo>>
KafkaConsumer. rxPartitionsFor(String topic)
Get metadata about the partitions for a given topic. -
Uses of PartitionInfo in io.vertx.rxjava3.kafka.client.producer
Methods in io.vertx.rxjava3.kafka.client.producer that return types with arguments of type PartitionInfo Modifier and Type Method Description Single<List<PartitionInfo>>
KafkaProducer. partitionsFor(String topic)
Get the partition metadata for the give topic.Single<List<PartitionInfo>>
KafkaProducer. rxPartitionsFor(String topic)
Get the partition metadata for the give topic.
-