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

com.compilit.mediator.api.CommandHandler Maven / Gradle / Ivy

The newest version!
package com.compilit.mediator.api;

/**
 * A CommandHandler is a managed bean that is dedicated to handling a specific Command, represented by T.
 *
 * @param  The specific Command implementation.
 * @param  The return type of the Command.
 */
public interface CommandHandler, R> extends RequestHandler {

  R handle(T command);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy