com.evento.application.bus.RequestHandler 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 java.io.Serializable;
/**
* The RequestHandler interface represents a contract for handling requests.
* Implementations of this interface should provide implementation for the handle method.
*/
public interface RequestHandler {
/**
* This method handles a serializable object.
*
* @param serializable the serializable object to be handled
* @return the handled serializable object
* @throws Exception if an error occurs during handling
*/
Serializable handle(Serializable serializable) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy