I work on a code that uses reactive-kafka module in Scala. My code uses lines such as:
val kafka = new ReactiveKafka()
kafka.consume(ConsumerProprties(...).readFromEndOfStream())
kafka.publish(ProducerProperties(...))
I have two questions:
I see that my code imports the package com.softwaremill.react.kafka. Can you give me a link to a detailed documentation? All information I found so far is too consice.
I want to check that the server is still connected to Kafka. How can I do it using com.softwaremill.react.kafka package?