Package eu.woolplatform.utils.schedule
Interface EventListener<T>
-
- Type Parameters:
T- the type of event
public interface EventListener<T>General purpose event listener for events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEvent(T event)Called when an event occurs.
-
-
-
Method Detail
-
onEvent
void onEvent(T event)
Called when an event occurs.- Parameters:
event- the event
-
-