KafkaCluster.InteractiveConsumer<String,io.debezium.document.Document> |
KafkaCluster.Usage.createConsumer(String groupId,
String clientId,
String topicName,
Runnable completion) |
Create an simple consumer that can be used to read messages from the cluster.
|
<K,V> KafkaCluster.InteractiveConsumer<K,V> |
KafkaCluster.Usage.createConsumer(String groupId,
String clientId,
String topicName,
org.apache.kafka.common.serialization.Deserializer<K> keyDeserializer,
org.apache.kafka.common.serialization.Deserializer<V> valueDeserializer,
Runnable completion) |
Create an simple consumer that can be used to read messages from the cluster.
|
KafkaCluster.InteractiveConsumer<String,io.debezium.document.Document> |
KafkaCluster.Usage.createConsumer(String groupId,
String clientId,
Set<String> topicNames,
Runnable completion) |
Create an simple consumer that can be used to read messages from the cluster.
|
<K,V> KafkaCluster.InteractiveConsumer<K,V> |
KafkaCluster.Usage.createConsumer(String groupId,
String clientId,
Set<String> topicNames,
org.apache.kafka.common.serialization.Deserializer<K> keyDeserializer,
org.apache.kafka.common.serialization.Deserializer<V> valueDeserializer,
Runnable completion) |
Create an simple consumer that can be used to read messages from the cluster.
|