vertx / io.vertx.kotlin.kafka.client.consumer / io.vertx.kafka.client.consumer.KafkaConsumer / resumeAwait

resumeAwait

suspend fun <K, V> KafkaConsumer<K, V>.resumeAwait(topicPartition: TopicPartition): Unit

Resume specified partition which have been paused with pause.

Parameters

topicPartition - topic partition from which resume fetching

completionHandler - handler called on operation completed

Returncurrent
KafkaConsumer instance *

suspend fun <K, V> KafkaConsumer<K, V>.resumeAwait(topicPartitions: Set<TopicPartition>): Unit

Resume specified partitions which have been paused with pause.

Parameters

topicPartitions - topic partition from which resume fetching

completionHandler - handler called on operation completed

Returncurrent
KafkaConsumer instance *