Package de.hybris.platform.cronjob.jalo
Interface ChangeListener
-
- All Superinterfaces:
java.util.EventListener
public interface ChangeListener extends java.util.EventListenerThe listener interface for receivingChangeEvents. Classes that are interested in processing these events must implement this interface and can register themself by using theCronJob.addChangeListener(String, ChangeListener)method.- See Also:
CronJob,ChangeDescriptor,ChangeEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotify(ChangeEvent event)This method is called each time aChangeEventis fired by the class the listener has itself registered to.
-
-
-
Method Detail
-
notify
void notify(ChangeEvent event)
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
-
-