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

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

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

/**
 * A generic parent for all request handlers.
 *
 * @param  The type of request.
 * @param  The return type of the request.
 * @see CommandHandler
 * @see QueryHandler
 * @see EventHandler
 */
public interface RequestHandler {

  /**
   * @param request The specific implementation of either a Command, Query or Event.
   * @return R The return type of the request.
   */
  R handle(T request);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy