Package de.hybris.platform.cronjob.jalo
Interface ChangeListener
- All Superinterfaces:
EventListener
The listener interface for receiving
ChangeEvents. Classes that are interested in processing these
events must implement this interface and can register themself by using the
CronJob.addChangeListener(String, ChangeListener) method.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidnotify(ChangeEvent event) This method is called each time aChangeEventis fired by the class the listener has itself registered to.
-
Method Details
-
notify
This method is called each time aChangeEventis fired by the class the listener has itself registered to. Implement your processing theChangeEventshere.- Parameters:
event- theChangeEventwhich has been fired
-