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

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

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

/**
 * EventHandlers are for all event based action. An event can be the result of Commands or Queries.
 *
 * @param  The Event type this EventHandler can handle.
 */
public interface EventHandler extends RequestHandler {

  Void handle(T command);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy