Package org.apache.camel.component.kafka
Interface KafkaClientFactory
- All Known Implementing Classes:
DefaultKafkaClientFactory
public interface KafkaClientFactory
Factory to create a new Kafka
Consumer and Kafka Producer instances.-
Method Summary
Modifier and TypeMethodDescriptiongetBrokers(KafkaConfiguration configuration) URL of the Kafka brokers to use.org.apache.kafka.clients.consumer.ConsumergetConsumer(Properties kafkaProps) Creates a new instance of the KafkaConsumerclass.org.apache.kafka.clients.producer.ProducergetProducer(Properties kafkaProps) Creates a new instance of the KafkaProducerclass.
-
Method Details
-
getProducer
Creates a new instance of the KafkaProducerclass.- Parameters:
kafkaProps- The producer configs.- Returns:
- an instance of Kafka producer.
-
getConsumer
Creates a new instance of the KafkaConsumerclass.- Parameters:
kafkaProps- The consumer configs.- Returns:
- an instance of Kafka consumer.
-
getBrokers
URL of the Kafka brokers to use. The format is host1:port1,host2:port2, and the list can be a subset of brokers or a VIP pointing to a subset of brokers. This option is known as bootstrap.servers in the Kafka documentation.- Parameters:
configuration- the configuration
-