Interface IEventHandler<T extends SimulationEvent>
-
- All Known Implementing Classes:
AfterSystemCallParameterHandler,BeforeSystemCallParameterHandler
public interface IEventHandler<T extends SimulationEvent>A handler callback for a simulation component event.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIEventHandler.Registration
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IEventHandler.Registrationhandle(T simulationEvent)The handle method called when a specific event was triggered.
-
-
-
Method Detail
-
handle
IEventHandler.Registration handle(T simulationEvent)
The handle method called when a specific event was triggered.- Parameters:
simulationEvent- The triggered eventsimulationEvent- The triggered event- Returns:
true, if this handler is not interested in further events and shall unregistered;false, else.
-
-