com.github.lontime.extkafka.common.WrapperProducer Maven / Gradle / Ivy
package com.github.lontime.extkafka.common;
import org.apache.kafka.clients.producer.Producer;
/**
* @author lontime
* @since 1.0
*/
public class WrapperProducer {
private String topic;
private Integer partition;
private Producer producer;
public WrapperProducer(String topic, Producer producer) {
this.topic = topic;
this.producer = producer;
}
public WrapperProducer(String topic, Integer partition, Producer producer) {
this.topic = topic;
this.producer = producer;
this.partition = partition;
}
public String getTopic() {
return topic;
}
public Producer getProducer() {
return producer;
}
public Integer getPartition() {
return partition;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy