vertx / io.vertx.reactivex.kafka.client.consumer / KafkaConsumer / rxSeekToEnd

rxSeekToEnd

open fun rxSeekToEnd(topicPartition: TopicPartition): Completable

Seek to the last offset for each of the given partition.

Due to internal buffering of messages, the will continue to observe messages fetched with respect to the old offset until some time after the given completionHandler is called. In contrast, the once the given completionHandler is called the io.vertx.reactivex.kafka.client.consumer.KafkaConsumer#batchHandler will only see messages consistent with the new offset.

Parameters

topicPartition - topic partition for which seek

Return

open fun rxSeekToEnd(topicPartitions: MutableSet<TopicPartition>): Completable

Seek to the last offset for each of the given partitions.

Due to internal buffering of messages, the will continue to observe messages fetched with respect to the old offset until some time after the given completionHandler is called. In contrast, the once the given completionHandler is called the io.vertx.reactivex.kafka.client.consumer.KafkaConsumer#batchHandler will only see messages consistent with the new offset.

Parameters

topicPartitions - topic partition for which seek

Return