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

com.evento.application.bus.RequestHandler Maven / Gradle / Ivy

Go to download

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