Interface DataStructureDataChangeListener
-
- All Known Implementing Classes:
DataStructureListener
public interface DataStructureDataChangeListener
User needs to implement this interface in order to receive datastructure changed notifications.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onDataStructureChanged(java.lang.String collectionName, DataStructureEventArg collectionEventArgs)
Defines a listener method for notifying applications when a distributed collection is updated in the cache.
-
-
-
Method Detail
-
onDataStructureChanged
void onDataStructureChanged(java.lang.String collectionName, DataStructureEventArg collectionEventArgs)
Defines a listener method for notifying applications when a distributed collection is updated in the cache.- Parameters:
collectionName
- The name of collection used to reference it.collectionEventArgs
- The collection event arguments.
-
-