Interface EventHandler<Event>
-
public interface EventHandler<Event>
A handler that can be registered with anEventSource
actor to receive all eventssent
to the actor.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleEvent(Event event)
-
-
-
Method Detail
-
handleEvent
void handleEvent(Event event) throws SuspendExecution, java.lang.InterruptedException
- Throws:
SuspendExecution
java.lang.InterruptedException
-
-