All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.infusers.core.email.kafka.KafkaProducer Maven / Gradle / Ivy

There is a newer version: 2024.12.0008
Show newest version
/*package com.infusers.core.email.kafka;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.kafka.core.KafkaTemplate;
import org.springframework.stereotype.Component;

import com.infusers.core.email.EmailMessage;

@Component
public class KafkaProducer {
    @Value("${kafka.consumer.topic}")
    private String topic;

    @Autowired
    private KafkaTemplate kafkaTemplate;

    public void sendMessage(EmailMessage eMessage) {
        kafkaTemplate.send(topic, eMessage);
    }
}*/





© 2015 - 2025 Weber Informatics LLC | Privacy Policy