Package alpine.event.framework
Interface Subscriber
-
- All Known Subinterfaces:
LoggableSubscriber
- All Known Implementing Classes:
LdapSyncTask
public interface SubscriberAll subscribers need to implement this interface. Subscribers are informed of events they are subscribed to via the inform method.- Since:
- 1.0.0
- Author:
- Steve Springett
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinform(Event event)Defines a method to inform subscribers who implement this interface.
-
-
-
Method Detail
-
inform
void inform(Event event)
Defines a method to inform subscribers who implement this interface.- Parameters:
event- the Event to subscribe to- Since:
- 1.0.0
-
-