Package com.storedobject.core
Interface DataChangeNotifier
public interface DataChangeNotifier
This interface represents a data change notifier.
You may implement this interface and create an entry in the
DataChangeNotifierLogic
for processing data
changes.
Note: The class that implements this interface must have a default public constructor.
- Author:
- Syam
-
Method Summary
Modifier and TypeMethodDescriptionboolean
changed
(DataChanged change) This method is invoked to notify changes.
-
Method Details
-
changed
This method is invoked to notify changes.- Parameters:
change
- Change details.- Returns:
- Return
true
if it is processed successfully so that no further notification will be sent.
-