suspend fun <K, V> KafkaConsumer<K, V>.resumeAwait(topicPartition: TopicPartition): Unit
Resume specified partition which have been paused with pause.
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.
topicPartitions
- topic partition from which resume fetching
completionHandler
- handler called on operation completed
Returncurrent
KafkaConsumer instance *