package org.gcube.smartgears.handlers; /** * Handles events. * * @author Fabio Simeoni * * @param the event type */ public interface Handler { /** * Processes a given event. * * @param e the event */ void onEvent(E event); }