Package net.solarnetwork.event
Interface AppEventHandler
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An event listener API.
This API has been modeled after
org.osgi.service.event.EventHandler to help working in non-OSGi
environments.
- Since:
- 2.0
- Version:
- 1.0
- Author:
- matt
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleEvent(AppEvent event) Invoked to notify the handler of an event.
-
Method Details
-
handleEvent
Invoked to notify the handler of an event.- Parameters:
event- the event that occurred
-