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

io.github.harishb2k.easy.messaging.producer.IProducer Maven / Gradle / Ivy

There is a newer version: 0.0.48
Show newest version
package io.github.harishb2k.easy.messaging.producer;

public interface IProducer {
    /**
     * Start producer
     */
    void start();

    /**
     * Send message
     *
     * @param key   key for message
     * @param value value to send
     * @return true if message send is successful
     */
    boolean send(String key, Object value);

    /**
     * Shutdown
     */
    void shutdown();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy