com.evento.application.bus.ResponseSender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evento-bundle Show documentation
Show all versions of evento-bundle Show documentation
Evento Framework - Bundle. The library to build a RECQ System based on Evento Server
The newest version!
package com.evento.application.bus;
import com.evento.common.messaging.bus.SendFailedException;
import java.io.Serializable;
/**
* The ResponseSender interface provides a contract for sending response messages.
*
*
* Implementations of this interface should be responsible for sending a Serializable message as a response.
* If the send operation fails, a SendFailedException will be thrown.
*
*/
public interface ResponseSender {
/**
* Sends a serializable message.
*
* @param message the message to be sent
* @throws SendFailedException if the send operation fails
*/
void send(Serializable message) throws SendFailedException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy