Package org.netxms.client.datacollection
Interface DataCollectionConfigurationChangeListener
-
public interface DataCollectionConfigurationChangeListenerCallback to notify View about object change
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonDelete(long id)Called when data collection object is deletedvoidonStatusChange(long id, int status)Called when state of data collection object was changedvoidonUpdate(DataCollectionObject object)Called when data collection object updated.
-
-
-
Method Detail
-
onUpdate
void onUpdate(DataCollectionObject object)
Called when data collection object updated.- Parameters:
object- data collection object
-
onDelete
void onDelete(long id)
Called when data collection object is deleted- Parameters:
id- data collection object ID
-
onStatusChange
void onStatusChange(long id, int status)Called when state of data collection object was changed- Parameters:
id- data collection object IDstatus- new status of data collection object
-
-