com.nitorcreations.willow.eventhandler.EventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of willow-eventhandler Show documentation
Show all versions of willow-eventhandler Show documentation
Willow generic event handler
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;
}