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

com.nitorcreations.willow.eventhandler.EventHandler Maven / Gradle / Ivy

The newest version!
package com.nitorcreations.willow.eventhandler;

import com.nitorcreations.willow.messages.event.EventMessage;

/**
 * Generic event handler interface.
 * 
 * @author mtommila
 */
public interface EventHandler {
  /**
   * Handle the event.
   * 
   * @param eventMessage The event message.
   */
  void handle(EventMessage eventMessage) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy